'Declaration Public Event DrawDataSeries As DrawDataSeriesEventHandler
public event DrawDataSeriesEventHandler DrawDataSeries
Event Data
The event handler receives an argument of type DrawDataSeriesEventArgs containing data related to this event. The following DrawDataSeriesEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Bounds | Gets the rectangular area in which the data series will be plotted. |
Brush | Gets or sets the brush that will be used for data plotting. |
DisposeBrush | Gets or sets whether the brush should be disposed by the chart after drawing the series. If DisposeBrush is false the brush is not disposed by the chart. |
DisposePen | Gets or sets whether the pen should be disposed by the chart after drawing the series. If DisposePen is false the pen is not disposed by the chart. |
GroupIndex | Gets the index of the chart group. |
IsLegend | Gets whether the current region about to be drawn is in the legend. |
Pen | Gets or sets the pen that will be used for data plotting. |
SeriesIndex | Gets the index of the data series about to be drawn. |
See Also