Ag-grid pivot group count

梦想与她 提交于 2019-12-11 09:46:33

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!