Class Chart3DDataPointInfo
Gets or sets the data point information for the SfChart3D series. This class is used to get the data point information in the SfChart3D events and templates.
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DDataPointInfo : Object
Remarks
The Chart3DDataPointInfo class provides access to data point information such as values, categories, and other related data. It is designed to be used within event handlers or templates of the SfChart3D component.
Constructors
Chart3DDataPointInfo()
Declaration
public Chart3DDataPointInfo()
Properties
PointIndex
Gets the index of the data point.
Declaration
public double PointIndex { get; set; }
Property Value
Type |
---|
System.Double |
Remarks
Use this property to get the index of the data point in the SfChart3D series. This is a readonly property.
PointText
Gets the text for the point.
Declaration
public string PointText { get; set; }
Property Value
Type |
---|
System.String |
Remarks
Use this property to get the text of the data point in the SfChart3D which is going to be rendered. This is a readonly property.
PointX
Gets the x value of the point.
Declaration
public object PointX { get; set; }
Property Value
Type |
---|
System.Object |
Remarks
Use this property to get the x value of the data point in the SfChart3D. This is a readonly property.
PointY
Gets the y value of the point.
Declaration
public object PointY { get; set; }
Property Value
Type |
---|
System.Object |
Remarks
Use this property to get the y value of the data point in the SfChart3D. This is a readonly property.
SeriesIndex
Gets the SfChart3D series index.
Declaration
public double SeriesIndex { get; set; }
Property Value
Type |
---|
System.Double |
Remarks
Use this property to get the index of the series in the SfChart3D. This is a readonly property.
SeriesName
Gets the data point’s series name.
Declaration
public string SeriesName { get; set; }
Property Value
Type |
---|
System.String |
Remarks
Use this property to get the series name of the data point in the SfChart3D. This is a readonly property.
StackedTotalValue
Gets the total y value of a data point in the stacking series types SfChart3D. This property allows for the inclusion of the cumulative sum of the data points in the SfChart3D. It can be used to customize the TooltipRendering 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 SfChart3D.The default value is null. |
Remarks
Use this property to get the total y value of a data point in the stacking series types SfChart3D. This is readonly property and only available in the stacking series types SfChart3D.
X
Gets or sets the x value for the point.
Declaration
public object X { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as object. The default value is null. |
Remarks
Use this property to get or customize the x value of the data point in the SfChart3D.
Y
Gets or sets the y value for the point.
Declaration
public object Y { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as object. The default value is null. |
Remarks
Use this property to get or customize the y value of the data point in the SfChart3D.