Skip to main content

PivotGridSeriesExcludedEventArgs.ActualSeriesCount Property

Specifies the actual number of series as they appear in a Chart that is associated with a Pivot Grid.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public int ActualSeriesCount { get; }

Property Value

Type Description
Int32

An integer value, specifying the actual number of series in the Chart.

Remarks

Use the ActualSeriesCount and PivotGridSeriesExcludedEventArgs.AvailableSeriesCount properties to obtain both the actual and available number of series, when they are limited by the PivotGridDataSourceOptions.MaxAllowedSeriesCount property.

To obtain information about the series points limited by the PivotGridDataSourceOptions.MaxAllowedPointCountInSeries property, use the PivotGridSeriesPointsExcludedEventArgs.ActualSeriesPointCount and PivotGridSeriesPointsExcludedEventArgs.AvailableSeriesPointCount properties.

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

See Also