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

PivotGridControl.ChartProvideColumnTotals Property

Gets or sets whether column totals are passed to a chart control. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.PivotGrid, DevExpress.Wpf.PivotGrid

Declaration

public bool ChartProvideColumnTotals { get; set; }

Property Value

Type Description
Boolean

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

Remarks

In the following image, a chart control creates series for selected PivotGrid columns (the PivotGridControl.ChartProvideDataByColumns property is set to true). The ChartProvideColumnTotals property is set to true, and a series representing the “1994 Total” column is created in a chart control:

PivotGrid_ChartShowColumnTotals_True

If the ChartProvideColumnTotals property is set to false, a series for the “1994 Total” column is not created:

PivotGrid_ChartShowColumnTotals_False

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ChartProvideColumnTotals property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also