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

In This Topic
    SymbolRendered Event (Series)
    In This Topic
    Fires after rendering symbol.
    Syntax
    'Declaration
     
    
    <C1DescriptionAttribute("Series.SymbolRendered", "Fires after rendering symbol.")>
    Public Event SymbolRendered As EventHandler(Of RenderSymbolEventArgs)
    [C1Description("Series.SymbolRendered", "Fires after rendering symbol.")]
    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 graphics. (Inherited from C1.Win.Chart.RenderEventArgs)
    Gets the data point index.  
    Gets the data item.  
    Gets the symbol point in control pixel coordinates.  
    Gets the data series.  
    See Also