Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CustomDrawSeriesEventArgs.Series Property

Gets the series whose points are currently being painted.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public Series Series { get; }

#Property Value

Type Description
Series

A Series object which represents the series currently being painted.

#Remarks

Use the Series property to access the series currently being painted when handling the ChartControl.CustomDrawSeries and ChartControl.CustomDrawSeriesPoint events.

Important

Changes applied to the object accessed via this property will never be effected.

To change a series’ appearance in a specific case, use the CustomDrawSeriesEventArgsBase.SeriesDrawOptions property instead. If you configure the appearance of an automatically generated series, use the ChartControl.BoundDataChanged(WebChartControl.BoundDataChanged or ChartControlSettings.BoundDataChanged) event instead.

See Also