ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / C1FlexChart Class / LabelRendering Event



In This Topic
    LabelRendering Event (C1FlexChart)
    In This Topic
    Fires before rendering label.
    Syntax
    'Declaration
     
    
    Public Event LabelRendering As EventHandler(Of RenderDataLabelEventArgs)
    'Usage
     
    
    Dim instance As C1FlexChart
    Dim handler As EventHandler(Of RenderDataLabelEventArgs)
     
    AddHandler instance.LabelRendering, handler
    public event EventHandler<RenderDataLabelEventArgs> LabelRendering
    public:
    event EventHandler<RenderDataLabelEventArgs^>^ LabelRendering
    Event Data

    The event handler receives an argument of type RenderDataLabelEventArgs containing data related to this event. The following RenderDataLabelEventArgs 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. (Inherited from C1.WPF.Chart.RenderSymbolEventArgs)
    Gets the data item. (Inherited from C1.WPF.Chart.RenderSymbolEventArgs)
    Gets the symbol position in control pixel coordinates. (Inherited from C1.WPF.Chart.RenderSymbolEventArgs)
    Data label text. It can be changed in event handler.  
    See Also