Contents
- Row Grand Total Hiding
- Column Grand Total Hiding
- Both
Having trouble getting help?
Contact Support
Contact Support
Grand Total Hiding
11 Feb 20191 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().Pivot().PivotGrid("PivotGrid1").EnableRowGrandTotal(false).DataSource(.....)
Column Grand Total Hiding
You can hide the Grand Total in column alone by setting the property EnableColumnGrandTotal
to false
.
@Html.EJ().Pivot().PivotGrid("PivotGrid1").EnableColumnGrandTotal(false).DataSource(.....)
Both
You can hide the Grand Total in both row and column by setting the property EnableGrandTotal
to false
.
@Html.EJ().Pivot().PivotGrid("PivotGrid1").EnableGrandTotal(false).DataSource(.....)