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

PivotGridDataSourceOptions.RetrieveRowCustomTotals Property

Specifies whether or not row custom totals should be passed to a Chart from its associated Pivot Grid.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
[NonTestableProperty]
public bool RetrieveRowCustomTotals { get; set; }

Property Value

Type Description
Boolean

true to retrieve row custom totals; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to RetrieveRowCustomTotals
WinForms Controls ChartControl
.PivotGridDataSourceOptions.RetrieveRowCustomTotals
Reporting XRChart
.PivotGridDataSourceOptions.RetrieveRowCustomTotals
ASP.NET Web Forms Controls ChartControlSettings
.PivotGridDataSourceOptions.RetrieveRowCustomTotals
MVCxChartControl
.PivotGridDataSourceOptions.RetrieveRowCustomTotals
WebChartControl
.PivotGridDataSourceOptions.RetrieveRowCustomTotals

Remarks

The RetrieveRowCustomTotals property is linked together with the PivotGridOptionsChartDataSourceBase.ProvideRowCustomTotals property of the associated Pivot Grid.

Use the PivotGridDataSourceOptions.RetrieveRowTotals, PivotGridDataSourceOptions.RetrieveRowGrandTotals and RetrieveRowCustomTotals properties, to define whether a Pivot Grid’s row totals are reflected in a Chart.

Column totals are maintained by the PivotGridDataSourceOptions.RetrieveColumnTotals, PivotGridDataSourceOptions.RetrieveColumnGrandTotals and PivotGridDataSourceOptions.RetrieveColumnCustomTotals properties.

Note

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

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

See Also