ComponentOne FlexChart for WPF
NodeRendering Event

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