New to Telerik UI for ASP.NET Core? Download free 30-day trial
Binding to grouped data
Loading Demo...
- EXAMPLE
- VIEW SOURCE
-
Change Theme
default
- Main
- Main Dark
- Nordic
- Ocean Blue
- Purple
- Turquoise
- Main
- Main Dark
- Nordic
- Urban
- Vintage
- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
- Main
- Main Dark
- Opal
- Silver
grouped_data.cshtml
Grouped_DataController.cs
WindDataItem.cs
ChartDataRepository.cs
Also available for:
CLIENT-SIDE API SERVER-SIDE APIDescription
Telerik Core charting extension can be integrated to a grouped data by ASP.NET Core DataSource. To do, so you can follow the steps below:
- Bind the chart to a ASP.NET Core DataSource control.
- Set the DataSource.group.field property to the name (e.g., the "Category" field) of the column in the underlying data which will be the criteria for grouping the chart series items into series Group(group => group.Add(model => model.Category))
- Bind the RadarColumn values of the series to the corresponding data source field (e.g., the "Frequency" and "DirText" fields): series.RadarColumn(model => model.Frequency, categoryExpression: model => model.DirText)
- Hide the Value Axis: ValueAxis -> Visible(false)
This will result in as many series as the number of distinct values in the DataSource.group.field column (e.g. "Category").