Xamarin.Forms | ComponentOne
C1.Xamarin.Forms.Chart Assembly / C1.Xamarin.Forms.Chart Namespace / ChartBase Class / ToolTipLoading Event


In This Topic
    ToolTipLoading Event
    In This Topic
    Fires when chart toolTip is loading.
    Syntax
    'Declaration
     
    
    Public Event ToolTipLoading As EventHandler(Of ChartTooltipLoadingEventArgs)
    'Usage
     
    
    Dim instance As ChartBase
    Dim handler As EventHandler(Of ChartTooltipLoadingEventArgs)
     
    AddHandler instance.ToolTipLoading, handler
    public event EventHandler<ChartTooltipLoadingEventArgs> ToolTipLoading
    Event Data

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

    PropertyDescription
    Gets the hit test info.  
    Gets the text.  
    Gets the customized view.  
    See Also