ChartSeriesBase
Class
Definition
Namespace:Telerik.Generated.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public abstract class ChartSeriesBase : DataVizCollectionItemComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseDataVizChildComponentDataVizCollectionItemComponentChartSeriesBase
Derived Classes:
Implements:
Inherited Members
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; }