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

PivotGridDataSourceOptions.SinglePageOnly Property

Specifies whether or not only the data from the Pivot Grid’s current page is passed to the associated Chart.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[TypeConverter(typeof(BooleanTypeConverter))]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
[NonTestableProperty]
public bool SinglePageOnly { get; set; }

Property Value

Type Description
Boolean

true to pass only the data from the current page; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to SinglePageOnly
WinForms Controls ChartControl
.PivotGridDataSourceOptions.SinglePageOnly
ASP.NET Controls and MVC Extensions ChartControlSettings
.PivotGridDataSourceOptions.SinglePageOnly
MVCxChartControl
.PivotGridDataSourceOptions.SinglePageOnly
WebChartControl
.PivotGridDataSourceOptions.SinglePageOnly
Reporting XRChart
.PivotGridDataSourceOptions.SinglePageOnly

Remarks

The SinglePageOnly property is linked together with the PivotGridWebOptionsChartDataSource.CurrentPageOnly property of the associated ASPxPivotGrid.

This property is not available in the ChartControl.PivotGridDataSourceOptions. The PivotGridDataSourceOptions.SelectionOnly property should be used instead.

Note

If the Chart’s data source is not a Pivot Grid, trying to set this property causes a NotSupportedException, and the SinglePageOnly property returns false, when trying to get its value.

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

See Also