Blazor | ComponentOne
C1.Blazor.Chart Assembly / C1.Blazor.Chart Namespace / FlexChart Class / LabelRendering Event

In This Topic
    LabelRendering Event (FlexChart)
    In This Topic
    Fires before rendering label.
    Syntax
    'Declaration
     
    
    Public Event LabelRendering As EventHandler(Of RenderDataLabelEventArgs)
    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.Blazor.Chart.RenderSymbolEventArgs)
    Gets the data item. (Inherited from C1.Blazor.Chart.RenderSymbolEventArgs)
    Gets the symbol point in control pixel coordinates. (Inherited from C1.Blazor.Chart.RenderSymbolEventArgs)
    Gets the data series. (Inherited from C1.Blazor.Chart.RenderSymbolEventArgs)
    Data label text. It can be changed in event handler.  
    See Also