|
// 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; }
}
|