'Declaration Public Event LabelRendering As System.EventHandler(Of RenderDataLabelEventArgs)
public event System.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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Engine | Gets the rendering engine. (Inherited from C1.Chart.BaseRenderEventArgs) |
Graphics | Gets the graphics. (Inherited from C1.Win.Chart.RenderEventArgs) |
Index | Gets the data point index. (Inherited from C1.Win.Chart.RenderSymbolEventArgs) |
Item | Gets the data item. (Inherited from C1.Win.Chart.RenderSymbolEventArgs) |
Point | Gets the symbol point in control pixel coordinates. (Inherited from C1.Win.Chart.RenderSymbolEventArgs) |
Series | Gets the data series. (Inherited from C1.Win.Chart.RenderSymbolEventArgs) |
Text | Data label text. It can be changed in event handler. |
See Also