C1.Android.Chart Assembly / C1.Android.Chart Namespace / ChartAxis Class / LabelLoading Event


LabelLoading Event
Fires when chart axis labels are loading.
Syntax
'Declaration
 
Public Event LabelLoading As EventHandler(Of AxisLabelLoadingEventArgs)
 
'Usage
 
Dim instance As ChartAxis
Dim handler As EventHandler(Of AxisLabelLoadingEventArgs)
 
AddHandler instance.LabelLoading, handler
Event Data

The event handler receives an argument of type AxisLabelLoadingEventArgs containing data related to this event. The following AxisLabelLoadingEventArgs properties provide information specific to this event.

PropertyDescription
Gets the axis.  
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the rendering engine. (Inherited from C1.Android.Chart.BaseRenderEventArgs)
Gets the data point index.  
Gets or sets the label element.  
Gets or sets the label string.  
Gets the label rect in control pixel coordinates.  
Gets or sets the original label value.  
See Also