Ag-Grid渲染网格后添加单元格样式

时间:2019-01-30 11:01:27

标签: angular ag-grid

我正在尝试在ag-grid中实现自定义颜色格式化程序,用户可以从颜色选择器中选择一种颜色并更改单元格背景颜色或字体颜色。

我能够获得Def列,但无法在Ag-grid中实现更改。

我一直在尝试:

this.data.columnApi.getColumn(index).getColDef().cellStyle['color'] = 'red';
this.data.gridApi.refreshCells();
and also
this.data.gridApi.redrawRows();

让我知道是否需要更多信息。

1 个答案:

答案 0 :(得分:1)

我查看了您的代码并替换了

  this.gridApi.refreshCells({
        columns: ["make"]
      });

  this.gridApi.redrawRows();

为我提供了正确的输出结果