Class ChartSeriesPoint
Defines a series data point. Intended for internal purposes only.
Inheritance
Namespace: Telerik.Blazor.Components.Common.Charts.Series
Assembly: Telerik.Blazor.dll
Syntax
public class ChartSeriesPoint : Object
Constructors
ChartSeriesPoint()
Declaration
public ChartSeriesPoint()
Properties
Category
The point category value. Can be dynamically calculated when the series data is aggregated.
Declaration
public object Category { get; set; }
Property Value
System.Object
|
CategoryIndex
The point category index. Available only for the Categorical series.
Declaration
public Nullable<int> CategoryIndex { get; set; }
Property Value
System.Nullable<System.Int32>
|
DataItem
The series data item.
Declaration
public object DataItem { get; set; }
Property Value
System.Object
|
Percentage
The point value represented as a percentage value. Available only for the Donut, Pie, and 100% Stacked charts.
Declaration
public double Percentage { get; set; }
Property Value
System.Double
|
RunningTotal
The sum of point values since the last "runningTotal" (applicable for waterfall series).
Declaration
public double RunningTotal { get; set; }
Property Value
System.Double
|
SeriesColor
The series color.
Declaration
public string SeriesColor { get; set; }
Property Value
System.String
|
SeriesIndex
The series index.
Declaration
public int SeriesIndex { get; set; }
Property Value
System.Int32
|
SeriesName
The series name.
Declaration
public string SeriesName { get; set; }
Property Value
System.String
|
Total
The sum of all previous series values (applicable for waterfall series).
Declaration
public double Total { get; set; }
Property Value
System.Double
|