ComponentOne FlexChart for WPF
NodeRendered Event

C1.WPF.FlexChart.4 Assembly > C1.WPF.Chart Namespace > C1TreeMap Class : NodeRendered Event
Fires after rendering node.
Syntax
'Declaration
 
Public Event NodeRendered As System.EventHandler(Of RenderNodeEventArgs)
public event System.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