Class MultiLevelLabelClickEventArgs
Specifies the event arguments available for the multi-level label click events in the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class MultiLevelLabelClickEventArgs : BaseEventArgs
Properties
Axis
Gets the current axis associated with the multi-level label.
Declaration
public ChartAxis Axis { get; }
Property Value
Remarks
This is a read-only property providing access to the axis where the label is clicked.
CustomAttributes
Gets the custom attributes associated with the multi-level label.
Declaration
public object CustomAttributes { get; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the custom attributes for the multi-level labels. |
Remarks
This is a read-only property providing additional attributes related to the labels.
End
Gets the end value of the multi-level labels.
Declaration
public object End { get; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the end value of the multi-level labels. |
Remarks
This property is useful for determining where a range of multi-level labels ends on an axis.
Level
Gets the current level of the multi-level labels.
Declaration
public double Level { get; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the level of the multi-level labels. |
Remarks
This property indicates the specific level of the multi-level labels currently being accessed.
Start
Gets the start value of the multi-level labels.
Declaration
public object Start { get; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the start value of the multi-level labels. |
Remarks
This property provides the starting point or initial value used for the multi-level labels on an axis.
Text
Gets the text of the clicked multi-level label.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | A string representing the text of the clicked multi-level label. |
Remarks
This property retrieves the label text of a multi-level label that the user has interacted with.