Class ChartDataPointInfo
Represents the point data information for a chart.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChartDataPointInfo : PointInfo
Constructors
ChartDataPointInfo()
Initializes a new instance of the ChartDataPointInfo class.
Declaration
public ChartDataPointInfo()
Remarks
This constructor initializes the chart data point information with default values.
Properties
Close
Gets or sets the close value for the point.
Declaration
public object Close { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as an object. The default value is null. |
Remarks
This property is important for financial charts where a single point may represent a period.
High
Gets or sets the high value for the point.
Declaration
public object High { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as an object. The default value is |
Remarks
Used to specify the highest value of a series of data points in a chart.
Low
Gets or sets the low value for the point.
Declaration
public object Low { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as an object. The default value is |
Remarks
Represents the lowest value of a data point series in a chart.
Open
Gets or sets the open value for the point.
Declaration
public object Open { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as an object. The default value is |
Remarks
This is used in open-high-low-close (OHLC) financial charts, indicative of the opening value.
Text
Gets or sets the text for the point.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the value as a string. The default value is |
Remarks
The text serves to annotate a data point, providing additional context or labels.
Volume
Gets or sets the volume value for the point.
Declaration
public object Volume { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as an object. The default value is |
Remarks
Important for charts displaying traded volumes in stock market data.
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 an object. The default value is |
Remarks
Establishes the horizontal position of the data point on a chart.
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 an object. The default value is |
Remarks
Determines the vertical position of the data point in a Cartesian chart.