Skip to main content
Row

PivotLayout.ShowColumnGrandTotals Property

Gets or sets a value indicating whether grand totals should be displayed for columns in the PivotTable report.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

bool ShowColumnGrandTotals { get; set; }

Property Value

Type Description
Boolean

true, to display grand totals for columns; otherwise, false.

Remarks

Use the ShowColumnGrandTotals and PivotLayout.ShowRowGrandTotals properties to display or hide grand totals for a PivotTable report. The PivotTable row displaying grand totals for columns is highlighted in the following image. The appearance of the grand total row is specified by the TableStyleElementType.TotalRow element of the style applied to the pivot table.

SpreadsheetPivotTable_GrandTotalsForColumns

The following example demonstrates how to use the ShowColumnGrandTotals property to hide grand totals for the PivotTable columns.

View Example

Worksheet worksheet = workbook.Worksheets["Report1"];
workbook.Worksheets.ActiveWorksheet = worksheet;

// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Add the "Region" field to the column axis area. 
pivotTable.ColumnFields.Add(pivotTable.Fields["Region"]);

// Hide grand totals for columns.
pivotTable.Layout.ShowColumnGrandTotals = false;

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowColumnGrandTotals 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