Class DataPoint
Specifies the data point of the range navigator.
Inheritance
System.Object
DataPoint
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataPoint : Object
Constructors
DataPoint()
Declaration
public DataPoint()
Properties
Index
Gets or sets the index of the point.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts the value as integer. The default value is 0. |
Visible
Gets or sets the visibility for the point.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | if |
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. |
XValue
Gets or sets the X-Value for different kinds of point.
Declaration
public double XValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |
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. |
YValue
Gets or sets the y-Value for different kinds of point.
Declaration
public double YValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |