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

How can i disable aggregation in ag-grid pivot mode?

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

设置gridOptions.toolPanelSuppressValues: true

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

在 ag grid 23 中,您必须在 GridOptions 属性.

sideBar 选项中执行此操作
toolPanels: [
      {
        id: 'id',
        labelDefault: 'labelDefault',
        labelKey: 'labelKey',
        iconKey: 'iconKey',
        toolPanel: 'agColumnsToolPanel',
        toolPanelParams: {
          suppressPivotMode: true, - here
          suppressValues: true,
        },
      },
    ],