- Row grand total hiding
- Column grand total hiding
- Both
Contact Support
Grand Total Hiding
13 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 enableRowGrandTotal
property to false
.
<script>
$(function() {
$("#PivotGrid1").ejPivotGrid({
//...
enableRowGrandTotal: false
});
});
</script>
Column grand total hiding
You can hide the Grand Total in column alone by setting the enableColumnGrandTotal
property to false
.
<div id="PivotGrid1"></div>
<script>
$(function() {
$("#PivotGrid1").ejPivotGrid({
//...
enableColumnGrandTotal: false
});
});
</script>
Both
You can hide the Grand Total in both row and column by setting the enableGrandTotal
property to false
.
<div id="PivotGrid1"></div>
<script>
$(function() {
$("#PivotGrid1").ejPivotGrid({
//...
enableGrandTotal: false
});
});
</script>