'Declaration
Public Event SymbolLoading As EventHandler(Of SymbolEventArgs)
'Usage
Dim instance As ChartSeries Dim handler As EventHandler(Of SymbolEventArgs) AddHandler instance.SymbolLoading, handler
public event EventHandler<SymbolEventArgs> SymbolLoading
Event Data
The event handler receives an argument of type SymbolEventArgs containing data related to this event. The following SymbolEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Index | Gets the data point index. |
Item | Gets the data item. |
PlotElement | Gets the PlotElement. |
Point | Gets the symbol position in control pixel coordinates. |
Size | Gets the symbol size in control pixel coordinates. |
SymbolSize | Gets the symbol Size. |
See Also