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
Gets or sets the point index.
Declaration
public double PointIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Remarks
Use this property to access or specify the position of the point within its dataset.
PointText
Gets or sets the point text.
Declaration
public string PointText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Remarks
The text can be used for labeling the point in a tooltip or legend.
PointX
Gets or sets the x-coordinate value of the point.
Declaration
public object PointX { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the object value. |
Remarks
This property is crucial for positioning the point on the chart's X-axis.
PointY
Gets or sets the y-coordinate value of the point.
Declaration
public object PointY { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the object value. |
Remarks
This property is crucial for positioning the point on the chart's Y-axis.
SeriesIndex
Gets or sets the chart series index.
Declaration
public double SeriesIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Remarks
The series index helps to identify within a set of data series on the chart.
SeriesName
Gets or sets the chart series name.
Declaration
public string SeriesName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Remarks
The series name is used to denote the identity of the data series visually represented by the point.
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 is a read-only property and is applicable only for stacking series types.