How Do I disable grouping aggregates which comes at the bottom of Group.
I have following code for dynamic groupings
let aggregateCols=[];
uniqueYrs.forEach(yr => {
Config.monthNames.forEach(m=>{
aggregateCols.push({
type: 'Sum',
field: m+'-'+yr,
format: 'N'
});
});
});
this.gridActuals.aggregates =[{
columns: aggregateCols
}];