Xamarin.iOS Documentation | ComponentOne
C1.iOS.Chart Assembly / C1.iOS.Chart Namespace / ChartAxis Class / LabelLoading Event


In This Topic
    LabelLoading Event
    In This Topic
    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
    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.

    PropertyDescription
    Gets the axis.  
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the rendering engine. (Inherited from C1.iOS.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