Class ChartDataPointInfo
Represents the point data information for chart.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChartDataPointInfo : PointInfo
Constructors
ChartDataPointInfo()
Declaration
public ChartDataPointInfo()
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 object. The default value is null. |
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 object. The default value is null. |
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 object. The default value is null. |
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 object. The default value is null. |
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 string. The default value is null. |
Volume
Gets or sets the volume for the point.
Declaration
public object Volume { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Accepts the value as object. The default value is null. |
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. |
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. |