Class AxisLabelRenderEventArgs
Specifies the event arguments available for on axis label render events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
AxisLabelRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisLabelRenderEventArgs : 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. |
LabelStyle
Defines axis current label font style.
Declaration
public ChartDefaultFont LabelStyle { get; set; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | A ChartDefaultFont that defines the font style of the current axis labels. |
Text
Defines axis current label text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Defines axis current label value.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |