Skip to main content

PivotGridSeriesPointsExcludedEventArgs.Series Property

Gets an auto-created series, for obtaining both its actual and total number of points.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public Series Series { get; }

Property Value

Type Description
Series

A Series object, representing an auto-created series.

Remarks

When the PivotGridDataSourceOptions.MaxAllowedPointCountInSeries property is set to a value other than 0, the number of points in auto-created series of the associated chart is limited by that value.

Use the Series property, to access an auto-created series at runtime, in the ChartControl.PivotGridSeriesPointsExcluded (or, WebChartControl.PivotGridSeriesPointsExcluded) event handler.

And, to obtain both the current and total number of points in the series, use the PivotGridSeriesPointsExcludedEventArgs.ActualSeriesPointCount and PivotGridSeriesPointsExcludedEventArgs.AvailableSeriesPointCount properties.

For more information, see Pivot Charting (Integration with a Pivot Grid Control).

See Also