Class Point
Represents the data point of chart.
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class Point : TemplateData
Constructors
Point()
Declaration
public Point()
Properties
Error
Gets or sets the error value for the point.
Declaration
public double Error { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |
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. |
Interior
Gets or sets the interior for the point.
Declaration
public string Interior { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. The default value is null. |
IsEmpty
Gets or sets the empty settings for the point.
Declaration
public bool IsEmpty { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | if |
IsSelected
Gets or sets the selection for the point.
Declaration
public bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | if |
Marker
Gets or sets the marker data for chart point.
Declaration
public MarkerSettingModel Marker { get; set; }
Property Value
Type | Description |
---|---|
MarkerSettingModel | The MarkerSettingModel object representing the data for marker for chart point. |
Maximum
Gets or sets the point's maximum value.
Declaration
public double Maximum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |
Minimum
Gets or sets the point's minimum value.
Declaration
public double Minimum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |
Percentage
Gets or sets the point's percentage value.
Declaration
public double Percentage { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the value as double. The default value is 0. |
RegionData
Gets or sets the region data for polar and radar chart point.
Declaration
public PolarArc RegionData { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Charts.Chart.Internal.PolarArc | The Syncfusion.Blazor.Charts.Chart.Internal.PolarArc object representing the data for polar and radar chart point. |
Regions
Gets or sets the chart point's regions.
Declaration
public List<Rect> Regions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Rect> | A list of Rect representing the chart point's regions. |
SymbolLocations
Gets or sets the chart point's locations.
Declaration
public List<ChartEventLocation> SymbolLocations { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ChartEventLocation> | A list of ChartEventLocation representing the symbol location values for the point. |
Tooltip
Gets or sets the tooltip format for the point.
Declaration
public string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. The default value is null. |
Visible
Gets or sets the visibility for the point.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | if |
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. |
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. |