Class AxisMultiLabelRenderEventArgs
Specifies the event arguments available for the multi level label render events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
AxisMultiLabelRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisMultiLabelRenderEventArgs : BaseEventArgs
Properties
Alignment
Defines text alignment for multi labels.
Declaration
public Alignment Alignment { get; set; }
Property Value
Type | Description |
---|---|
Alignment | An Alignment value that defines the text alignment for multi-labels. |
Axis
Defines the current axis.
Declaration
public ChartAxis Axis { get; }
Property Value
Type | Description |
---|---|
ChartAxis | A ChartAxis object that represents the current axis. |
CustomAttributes
Defines custom objects for multi labels.
Declaration
public object CustomAttributes { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the custom objects for multi-labels. |
Text
Defines axis current label text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
TextStyle
Defines font style for multi labels.
Declaration
public ChartDefaultFont TextStyle { get; set; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | A ChartDefaultFont object that defines the font style for multi-labels. |