Grand Total Hiding

28 Sep 20171 minute to read

Grand Total Hiding can be classified into three categories.

  • 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 property enableRowGrandTotal to false

  • HTML
  • <ej-pivotgrid [enableRowGrandTotal]="false">
    </ej-pivotgrid>

    Column Grand Total Hiding

    You can hide the Grand Total in column alone by setting the property enableColumnGrandTotal to false

  • HTML
  • <ej-pivotgrid [enableColumnGrandTotal]="false">
    </ej-pivotgrid>

    Both

    You can hide the Grand Total in both row and column by setting the property enableGrandTotal to false

  • HTML
  • <ej-pivotgrid [enableGrandTotal]="false">
    </ej-pivotgrid>