My panels are showing nothing - sample for the SF website

Hey guys

I have implemented the sample code of a dashboard from the SF webiste (Getting Started with Blazor Dashboard Layout Component | Syncfusion), but the panels are showing nothing as per below:


Notice that the grid is showing the information... it is part of the code sample.

Could someone please give me any idea on what could be wrong or missing?

Thanks in advance!!!





1 Reply 1 reply marked as answer

LD LeoLavanya Dhanaraj Syncfusion Team June 12, 2023 01:48 PM UTC

Hi Waldemar,


Greetings from Syncfusion support.


Based on your requirement, we have prepared and included the mentioned documentation link sample with the latest version(21.2.9). Refer the below code snippets for further assistance.


// Need to import the using statements for the components

@using Syncfusion.Blazor.Charts

@using Syncfusion.Blazor.Grids

@using Syncfusion.Blazor.Layouts

 

// import @using Syncfusion.Blazor.RangeNavigator package

 

// set proper values for the chart datas

public class ChartData

{

    public DateTime XValue { get; set; }

    public double YValue { get; set; }

    public string X { get; set; }

    public double Y { get; set; }

    public string Country { get; set; }

    public string X1 { get; set; }

    public double Y1 { get; set; }

    public double Y2 { get; set; }

    public double Y3 { get; set; }

    public double Y4 { get; set; }

}


Also, we have considered this as a UG corrections from our end and we will refresh our documentation online site in any of our upcoming releases.


Regards,

Leo Lavanya Dhanaraj


Attachment: DashboardComponents_1d7482de.zip

Marked as answer
Loader.
Up arrow icon