New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
protected ChartSeriesBase()

Properties

Provides the data collection that populates the chart series. Accepts any enumerable collection of objects (List, Array, IEnumerable). Each object represents one data point with properties mapped via Field parameters. Example: List<SalesData> where SalesData has Amount, Date, Category properties. Use Field, CategoryField to map object properties to chart values.

C#
[Parameter]
public IEnumerable<object> Data { get; set; }