This quick start guides you through the steps of adding the FlexChart control in your Blazor application, adding data to it and displaying the data in the control. In this example, we create a data source for FlexChart by creating list of countries and their GDP values for respective years and bind the list to the FlexChart control to display the data using Bar Chart in the control.
Example Title |
Copy Code
|
---|---|
<link rel="stylesheet" href="/_content/C1.Blazor.Core/styles.css" /> <link rel="stylesheet" href="/_content/C1.Blazor.Chart/styles.css" /> |
HTML |
Copy Code
|
---|---|
<script src="/_content/C1.Blazor.Core/scripts.js"></script> <script src="/_content/C1.Blazor.Chart/scripts.js"></script> |
In the code, add a DataSource class to create a list of data for the FlexChart control.
Razor |
Copy Code
|
---|---|
@code { public class GdpDataSource { public static List<object> GetCountryGdp() { return new List<object> { new { year = "2014", US = 17348075, Japan = 4602367, UK = 2950039, India = 2051228 }, new { year = "2015", US = 18036650, Japan = 4124211, UK = 2858482, India = 2073002 }, new { year = "2016", US = 18624450, Japan = 4936540, UK = 2629190, India = 2263790 } }; } } } |
To bind FlexChart to data, set the ItemsSource property of FlexChart class of which accepts the collection of items for the FlexChart control to create a Bar chart.
The Binding/BindingX properties should contain the names of properties of items from data source collection (FlexChart.ItemsSource property).
You need to set Binding property to specify a name of numeric property that should be plotted along y-axis and BindingX property to specify a name of property that should be plotted along x-axis. The property set by BindingX can be numeric as well as string (for category x-axis).
Also, the ItemsSource/Binding/BindingX can be also specified on a series level. If any of these properties isn't set, the series uses the corresponding properties of parent chart.
Razor |
Copy Code
|
---|---|
@using C1.Chart; @using C1.Blazor.Chart; <FlexChart Class="chart" ChartType="ChartType.Bar" Stacking="Stacking.Stacked" HeaderContent="Country GDP (M$)" HeaderStyle="font-size:24px" LegendPosition="Position.Bottom" LegendStyle="font-size:18px" BindingX="year" ItemsSource="@GdpDataSource.GetCountryGdp()"> <SeriesCollection> <Series Name="US" Binding="US" /> <Series Name="Japan" Binding="Japan" /> <Series Name="India" Binding="India" /> <Series Name="UK" Binding="UK" /> </SeriesCollection> <AxisCollection> <Axis AxisType="AxisType.X" Position="Position.Bottom" /> <Axis AxisType="AxisType.Y" Position="Position.Left"/> </AxisCollection> </FlexChart> |