C1.Android.Chart Assembly / C1.Android.Chart Namespace / ChartSeries Class / SymbolRendering Event


SymbolRendering Event
Fires before rendering symbol.
Syntax
'Declaration
 
Public Event SymbolRendering As EventHandler(Of SymbolEventArgs)
 
'Usage
 
Dim instance As ChartSeries
Dim handler As EventHandler(Of SymbolEventArgs)
 
AddHandler instance.SymbolRendering, handler
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.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the rendering engine. (Inherited from C1.Android.Chart.BaseRenderEventArgs)
Gets the data point index.  
Gets the data item.  
Gets the PlotElement.  
Gets the symbol position in control pixel coordinates.  
Gets the symbol size in control pixel coordinates.  
Gets the symbol Size.  
See Also