Blazor | ComponentOne
C1.Blazor.Chart Assembly / C1.Blazor.Chart Namespace / TreeMap Class / NodeRendering Event

In This Topic
    NodeRendering Event
    In This Topic
    Fires before rendering node.
    Syntax
    'Declaration
     
    
    Public Event NodeRendering As EventHandler(Of RenderNodeEventArgs)
    public event EventHandler<RenderNodeEventArgs> NodeRendering
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the depth of the node  
    Gets the rendering engine. (Inherited from C1.Chart.BaseRenderEventArgs)
    Gets the height of the node rectangle.  
    Gets if the node is a Title node or not  
    Gets the data item of the node.  
    Gets the width of the node rectangle.  
    Gets the top let x-coordinate of the node rectangle.  
    Gets the top let y-coordinate of the node rectangle.  
    See Also