Class
ChartSeriesPoint

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

Definition

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

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class ChartSeriesPoint

Inheritance: objectChartSeriesPoint

Derived Classes: ChartSeriesClickEventArgsChartSeriesTooltipTemplatePoint

Constructors

ChartSeriesPoint()

Declaration

cs-api-definition
public ChartSeriesPoint()

Properties

Category

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

Declaration

cs-api-definition
public object Category { get; set; }

Property Value

object

CategoryIndex

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

Declaration

cs-api-definition
public int? CategoryIndex { get; set; }

Property Value

int?

DataItem

The series data item.

Declaration

cs-api-definition
public object DataItem { get; set; }

Property Value

object

Percentage

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

Declaration

cs-api-definition
public double Percentage { get; set; }

Property Value

double

RunningTotal

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

Declaration

cs-api-definition
public double RunningTotal { get; set; }

Property Value

double

SeriesColor

The series color.

Declaration

cs-api-definition
public string SeriesColor { get; set; }

Property Value

string

SeriesIndex

The series index.

Declaration

cs-api-definition
public int SeriesIndex { get; set; }

Property Value

int

SeriesName

The series name.

Declaration

cs-api-definition
public string SeriesName { get; set; }

Property Value

string

Total

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

Declaration

cs-api-definition
public double Total { get; set; }

Property Value

double