FlexChart | ComponentOne
C1.WPF.Chart Assembly / C1.WPF.Chart Namespace / C1TreeMap Class / NodeRendered Event

In This Topic
    NodeRendered Event (C1TreeMap)
    In This Topic
    Fires after rendering node.
    Syntax
    'Declaration
     
    Public Event NodeRendered As EventHandler(Of RenderNodeEventArgs)
    public event EventHandler<RenderNodeEventArgs> NodeRendered
    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