如何在使用 ag-grid 反应时编辑行名称

How to edit row name while using ag-grid react

我在反应中使用 AG-Grid,我想重命名使用聚合时自动出现的行标题计数。照片会帮助你更好地理解。

查看显示“美国”的行,然后查看匹配对的计数 (1109),我想从那里删除该计数。谁能帮我解决这个问题。

要从组中删除计数,请将以下内容添加到 autoGroupColumnDef

  const autoGroupColumnDef = {
      cellRendererParams: {
        suppressCount: true,
      },
    };

查看 documentation example here

中的实现