ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / FlexChartBase Class / Rendering Event



In This Topic
    Rendering Event
    In This Topic
    Fires before chart starts rendering.
    Syntax
    'Declaration
     
    
    Public Event Rendering As EventHandler(Of RenderEventArgs)
    'Usage
     
    
    Dim instance As FlexChartBase
    Dim handler As EventHandler(Of RenderEventArgs)
     
    AddHandler instance.Rendering, handler
    public event EventHandler<RenderEventArgs> Rendering
    public:
    event EventHandler<RenderEventArgs^>^ Rendering
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the rendering engine. (Inherited from C1.Chart.BaseRenderEventArgs)
    Gets the control height.  
    Gets the control width.  
    See Also