'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.
Property | Description |
---|---|
HitTestInfo | Gets the hit test info. |
Text | Gets the text. |
view | Gets the customized view. |
See Also