Skip to main content
A newer version of this page is available. .

PivotGridSeriesExcludedEventArgs.AvailableSeriesCount Property

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

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

public int AvailableSeriesCount { get; }

Property Value

Type Description
Int32

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

Remarks

Use the PivotGridSeriesExcludedEventArgs.ActualSeriesCount and 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