问题
I'm using Ag-grid 16.0 with Angular 5.
I want to hide count of pivot group.
rowGroup: true,
cellRenderer:'agGroupCellRenderer',
cellRendererParams: {
suppressCount: false, // turn off the row count
}
suppressCount: false doesn't work for me.
How could I delete the count of pivot group?
Thank you for helping me in advance.
@pivot group count image
回答1:
Should be
cellRendererParams: {
suppressCount: true
}
来源:https://stackoverflow.com/questions/48660997/ag-grid-pivot-group-count