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

PivotGridOptionsChartDataSourceBase.ProvideRowTotals Property

Gets or sets whether row totals are passed to a chart control.

Namespace: DevExpress.XtraPivotGrid.Data

Assembly: DevExpress.PivotGrid.v21.2.Core.dll

NuGet Package: DevExpress.PivotGrid.Core

Declaration

[DefaultValue(false)]
public virtual bool ProvideRowTotals { get; set; }

Property Value

Type Default Description
Boolean false

true if row totals are displayed in a chart control; otherwise, false.

Remarks

In the following image, a chart control creates series for selected PivotGrid rows (the PivotGridOptionsChartDataSourceBase.ProvideDataByColumns property is set to false). The ProvideRowTotals property is set to true, and a series representing the “Austria Total” row is created in a chart control:

Chart_ShowRowTotals_True

If the ProvideRowTotals property is set to false, a series for the “Austria Total” row is not created:

Chart_ShowRowTotals_False

See Also