Skip to main content
All docs
V25.1
  • DxPivotTable.ShowColumnTotals Property

    Specifies whether to display column totals.

    Namespace: DevExpress.Blazor.PivotTable

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

    NuGet Package: DevExpress.Blazor.PivotTable

    Declaration

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

    Property Value

    Type Default Description
    Boolean true

    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.

    Pivot Table Totals

    Run Demo: Totals

    Run Demo: Totals

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

    The following code hides column totals:

    <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

    See Also