Class CrosshairAxisInfo
Defines the crosshair axis information.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class CrosshairAxisInfo
Constructors
CrosshairAxisInfo(string, string, object)
Declaration
public CrosshairAxisInfo(string axisName, string axisLabel, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | axisName | |
| string | axisLabel | |
| object | value |
Properties
AxisLabel
Define the specific axis label.
Declaration
public string AxisLabel { get; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the label of the axis. |
Remarks
This is a read-only property providing the label information of the axis crossed by the crosshair.
AxisName
Define the specific axis name.
Declaration
public string AxisName { get; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the name of the axis. |
Remarks
This is a read-only property providing the name of the axis crossed by the crosshair.
Value
Gets the value of the axis crossed by the crosshair lines.
Declaration
public object Value { get; }
Property Value
| Type | Description |
|---|---|
| object | An object representing the value of the axis. The default value is null. |
Remarks
It is a read-only value providing the exact point value on the axis where the crosshair lines intersect.