'Declaration
Public Event DataLabelsLoading As EventHandler(Of DataLabelLoadingEventArgs)
'Usage
Dim instance As ChartBase Dim handler As EventHandler(Of DataLabelLoadingEventArgs) AddHandler instance.DataLabelsLoading, handler
public event EventHandler<DataLabelLoadingEventArgs> DataLabelsLoading
Event Data
The event handler receives an argument of type DataLabelLoadingEventArgs containing data related to this event. The following DataLabelLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DataPoint | Gets the data point. |
HorizontalAlign | Gets or sets the data labels' horizontal alignment. |
PieLabelPosition | Gets or sets the custom view. |
Position | Gets or sets the custom view. |
VerticalAlign | Gets or sets the data labels' vertical alignment. |
View | Gets or sets the custom view. |
See Also