Changing the ‘Grand Total’ label on pivot table
Updated 11-08-2024
pivot2 version
widget.transformPivot(
{type: ['grandtotal']},
function (metadata, cell) {
if(cell.content == 'The title to be changed') {
cell.content = 'The new title';
}});
P.S. And I am looking for a way to move Grand Total to the first row. Has anyone achieved it?