Grand total hiding

11 Feb 20191 minute to read

Grand total hiding can be classified into three categories as follows:

  • Row grand total hiding
  • Column grand total hiding
  • Both

Row grand total hiding

You can hide the Grand Total in row alone by setting the enable-row-grand-total property to false.

  • CSHTML
  • <ej-pivot-grid id="PivotGrid1" enable-row-grand-total="false"></ej-pivot-grid>

    Hiding row totals in ASP NET Core pivot grid control

    Column grand total hiding

    You can hide the Grand Total in column alone by setting the enable-column-grand-total property to false.

  • CSHTML
  • <ej-pivot-grid id="PivotGrid1" enable-column-grand-total="false"></ej-pivot-grid>

    Hiding column totals in ASP NET Core pivot grid control

    Both

    You can hide the Grand Total in both row and column by setting the enable-grand-total property to false.

  • CSHTML
  • <ej-pivot-grid id="PivotGrid1" enable-grand-total="false"></ej-pivot-grid>

    Hiding totals in ASP NET Core pivot grid control