如何在ag-grid枢轴模式下禁用聚合?

时间:2017-05-23 15:22:12

标签: ag-grid

这些是网格给出的选项,我想隐藏聚合部分,因为我没有要聚合的任何列。

Menu from ag-grid with aggregate values section highlighted

2 个答案:

答案 0 :(得分:1)

设置gridOptions.toolPanelSuppressValues: true

您可以阅读有关抑制工具面板here的其他部分的更多信息(查找抑制示例

答案 1 :(得分:0)

在网格23中,您必须在sideBar属性的GridOptions选项内进行操作。

toolPanels: [
      {
        id: 'id',
        labelDefault: 'labelDefault',
        labelKey: 'labelKey',
        iconKey: 'iconKey',
        toolPanel: 'agColumnsToolPanel',
        toolPanelParams: {
          suppressPivotMode: true, - here
          suppressValues: true,
        },
      },
    ],