ComponentOne FlexChart for UWP
C1.UWP.FlexChart Assembly / C1.Xaml.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 System.EventHandler(Of RenderDataLabelEventArgs)
    public event System.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.Xaml.Chart.RenderSymbolEventArgs)
    Gets the data item. (Inherited from C1.Xaml.Chart.RenderSymbolEventArgs)
    Gets the symbol position in control pixel coordinates. (Inherited from C1.Xaml.Chart.RenderSymbolEventArgs)
    Data label text. It can be changed in event handler.  
    See Also