Class CrosshairAxisInfo
Defines the crosshair axis information.
Inheritance
System.Object
CrosshairAxisInfo
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class CrosshairAxisInfo : Object
Constructors
CrosshairAxisInfo(String, String, Object)
Declaration
public CrosshairAxisInfo(string axisName, string axisLabel, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | axisName | |
System.String | axisLabel | |
System.Object | value |
Properties
AxisLabel
Define the specific axis label.
Declaration
public string AxisLabel { get; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.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 |
---|---|
System.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.