Class AxisLabelClickEventArgs
Specifies the event arguments available for on axis label click events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
AxisLabelClickEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisLabelClickEventArgs : BaseEventArgs
Properties
Axis
Defines the current axis.
Declaration
public ChartAxis Axis { get; }
Property Value
Type | Description |
---|---|
ChartAxis | A ChartAxis object that represents the current axis. |
Chart
Defines the chart instance when labelClick.
Declaration
public SfChart Chart { get; }
Property Value
Type | Description |
---|---|
SfChart | A SfChart object that represents the chart instance. |
Index
Defines axis current label index.
Declaration
public int Index { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
LabelID
Defines axis current label element id.
Declaration
public string LabelID { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Location
Defines the current annotation location.
Declaration
public ChartEventLocation Location { get; }
Property Value
Type | Description |
---|---|
ChartEventLocation | A ChartEventLocation that defines the current annotation location. |
Text
Defines axis current label text.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Defines axis current label value.
Declaration
public double Value { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |