Class AxisMultiLabelRenderEventArgs
Specifies the event arguments available for the multi level label render events in the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisMultiLabelRenderEventArgs : BaseEventArgs
Properties
Alignment
Gets or sets the text alignment for multi labels.
Declaration
public Alignment Alignment { get; set; }
Property Value
Remarks
This property allows you to specify how the text of multi-level labels should be aligned.
Axis
Defines the current axis.
Declaration
public ChartAxis Axis { get; }
Property Value
Remarks
This property provides the axis that contains the multi-level labels being rendered.
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. |
Remarks
This property allows you to retrieve any additional custom attributes specified for the multi-level labels.
Text
Gets or sets the current axis label text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Remarks
This property allows you to modify or access the text content of the multi-level label during rendering.
TextStyle
Gets or sets the font style for multi labels.
Declaration
public ChartDefaultFont TextStyle { get; set; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | A ChartDefaultFont object that specifies the font style for the multi-level labels. |
Remarks
This property provides control over the font styling of the multi-level labels.