Skip to main content

PivotGridSeriesPointsExcludedEventArgs.AvailableSeriesPointCount Property

Specifies the available number of points in a series of 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 AvailableSeriesPointCount { get; }

Property Value

Type Description
Int32

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

Remarks

Use the PivotGridSeriesPointsExcludedEventArgs.ActualSeriesPointCount and AvailableSeriesPointCount properties, to obtain both the actual and available number of points in a series when they are limited by the PivotGridDataSourceOptions.MaxAllowedPointCountInSeries property.

To obtain information about the series limited by the PivotGridDataSourceOptions.MaxAllowedSeriesCount property, use the PivotGridSeriesExcludedEventArgs.ActualSeriesCount and PivotGridSeriesExcludedEventArgs.AvailableSeriesCount properties.

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

See Also