Grand total hiding in ASP.NET Webforms PivotGrid

26 Jun 20231 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 EnableRowGrandTotal property to false.

  • HTML
  • <ej:PivotGrid ID="PivotGrid1" runat="server" EnableRowGrandTotal="false">
        <%--...--%>
    </ej:PivotGrid>

    Hiding row totals in ASP NET pivot grid control

    Column grand total hiding

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

  • HTML
  • <ej:PivotGrid ID="PivotGrid1" runat="server" EnableColumnGrandTotal="false">
       <%--...--%>
    </ej:PivotGrid>

    Hiding column totals in ASP NET pivot grid control

    Both

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

  • HTML
  • <ej:PivotGrid ID="PivotGrid1" runat="server" EnableGrandTotal="false">
        <%--...--%>
    </ej:PivotGrid>

    Hiding totals in ASP NET pivot grid control