Back to Devexpress

DxPivotTable.ShowRowTotals Property

blazor-devexpress-dot-blazor-dot-pivottable-dot-dxpivottable-2e17cf8a.md

latest2.4 KB
Original Source

DxPivotTable.ShowRowTotals Property

Specifies whether to display row totals.

Namespace : DevExpress.Blazor.PivotTable

Assembly : DevExpress.Blazor.PivotTable.v25.2.dll

NuGet Package : DevExpress.Blazor.PivotTable

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool ShowRowTotals { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to show totals; false to hide totals.

|

Remarks

The DevExpress Blazor Pivot Table calculates totals for its data and displays them as separate columns and rows. There are four types of totals:

  • Row/column totals display sub-totals calculated for field values that include nested values ( Regions and Years in the example below).
  • Row/column grand totals display overall totals calculated against all rows/columns.

Run Demo: Totals

Run Demo: Totals

You can use the following properties to change totals’ visibility:

The following code hides row totals:

razor
<DxPivotTable Data="SalesData"
              ShowRowTotals="false">
    <Fields>
        @*...*@
    </Fields>
</DxPivotTable>

You can also use the following properties to set the position of row/column totals relative to rows/columns:

Implements

ShowRowTotals

See Also

DxPivotTable Class

DxPivotTable Members

DevExpress.Blazor.PivotTable Namespace