blazor-devexpress-dot-blazor-dot-pivottable-dot-dxpivottable-e6541afa.md
Specifies whether to display row grand totals.
Namespace : DevExpress.Blazor.PivotTable
Assembly : DevExpress.Blazor.PivotTable.v25.2.dll
NuGet Package : DevExpress.Blazor.PivotTable
[DefaultValue(true)]
[Parameter]
public bool ShowRowGrandTotals { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to show totals; false to hide totals.
|
The DevExpress Blazor Pivot Table calculates totals for its data and displays them as separate columns and rows. There are four types of totals:
You can use the following properties to change totals’ visibility:
ShowRowGrandTotalsThe following code hides row and column grand totals:
<DxPivotTable Data="SalesData"
ShowColumnGrandTotals="false"
ShowRowGrandTotals="false">
<Fields>
@*...*@
</Fields>
</DxPivotTable>
You can also use the following properties to set the position of row/column totals relative to rows/columns:
See Also