PivotLayout.ShowRowGrandTotals Property
Gets or sets a value indicating whether grand totals should be displayed for rows in the PivotTable report.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, to display grand totals for rows; otherwise, false. |
Remarks
Use the ShowRowGrandTotals and PivotLayout.ShowColumnGrandTotals properties to display or hide grand totals for a PivotTable report. The PivotTable column displaying grand totals for rows is highlighted in the following image. The appearance of the grand total column is specified by the TableStyleElementType.LastColumn element of the style applied to the pivot table.
The following example demonstrates how to use the ShowRowGrandTotals property to hide grand totals for the PivotTable rows.
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 rows.
pivotTable.Layout.ShowRowGrandTotals = false;
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowRowGrandTotals 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.