Class PointInfo
Defines the information of the chart point.
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PointInfo : Object
Constructors
PointInfo()
Declaration
public PointInfo()
Properties
PointIndex
Defines the point index.
Declaration
public double PointIndex { get; set; }
Property Value
Type |
---|
System.Double |
PointText
Defines the point text.
Declaration
public string PointText { get; set; }
Property Value
Type |
---|
System.String |
PointX
Defines the x value of the point.
Declaration
public object PointX { get; set; }
Property Value
Type |
---|
System.Object |
PointY
Defines the y value of the point.
Declaration
public object PointY { get; set; }
Property Value
Type |
---|
System.Object |
SeriesIndex
Defines the chart series index.
Declaration
public double SeriesIndex { get; set; }
Property Value
Type |
---|
System.Double |
SeriesName
Defines the chart series name.
Declaration
public string SeriesName { get; set; }
Property Value
Type |
---|
System.String |
StackedTotalValue
Gets the total y value of a data point in the stacking series types chart. This property allows for the inclusion of the cumulative sum of the data points in the chart. It can be used to customize the TooltipRender event to display the total value alongside other data points information.
Declaration
public double StackedTotalValue { get; }
Property Value
Type | Description |
---|---|
System.Double | The sum of the same point indexed y values for the stacking series type chart.The default value is null. |
Remarks
This property is read-only and is applicable only for stacking series types.