'Declaration
Public Event LabelLoading As EventHandler(Of AxisLabelLoadingEventArgs)
'Usage
Dim instance As ChartAxis Dim handler As EventHandler(Of AxisLabelLoadingEventArgs) AddHandler instance.LabelLoading, handler
public event EventHandler<AxisLabelLoadingEventArgs> LabelLoading
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.
Property | Description |
---|---|
Axis | Gets the axis. |
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Index | Gets the data point index. |
Label | Gets or sets the label element. |
LabelString | Gets or sets the label string. |
Rect | Gets the label rect in control pixel coordinates. |
Value | Gets or sets the original label value. |
See Also