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

Defines a series data point. Intended for internal purposes only.

Definition

Namespace:Telerik.Blazor.Components.Common.Charts.Series

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class ChartSeriesPoint

Inheritance: objectChartSeriesPoint

Derived Classes: ChartSeriesClickEventArgsChartSeriesTooltipTemplatePoint

Constructors

C#
public ChartSeriesPoint()

Properties

The point category value. Can be dynamically calculated when the series data is aggregated.

C#
public object Category { get; set; }

The point category index. Available only for the Categorical series.

C#
public int? CategoryIndex { get; set; }

The series data item.

C#
public object DataItem { get; set; }

The point value represented as a percentage value. Available only for the Donut, Pie, and 100% Stacked charts.

C#
public double Percentage { get; set; }

The sum of point values since the last "runningTotal" (applicable for waterfall series).

C#
public double RunningTotal { get; set; }

The series color.

C#
public string SeriesColor { get; set; }

The series index.

C#
public int SeriesIndex { get; set; }

The series name.

C#
public string SeriesName { get; set; }

The sum of all previous series values (applicable for waterfall series).

C#
public double Total { get; set; }