ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / Series Class / SymbolRendered Event



In This Topic
    SymbolRendered Event
    In This Topic
    Fires after rendering symbol.
    Syntax
    'Declaration
     
    
    Public Event SymbolRendered As EventHandler(Of RenderSymbolEventArgs)
    'Usage
     
    
    Dim instance As Series
    Dim handler As EventHandler(Of RenderSymbolEventArgs)
     
    AddHandler instance.SymbolRendered, handler
    public event EventHandler<RenderSymbolEventArgs> SymbolRendered
    public:
    event EventHandler<RenderSymbolEventArgs^>^ SymbolRendered
    Event Data

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

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