我正在使用
[enableCellChangeFlash]="true"
然后做
var params = { force: true };
this.gridApi.refreshCells(params);
用于强制刷新所有单元格。
正在发生刷新,但是颜色为绿色或绿色。 有没有办法改变这种默认颜色?
答案 0 :(得分:1)
看看我创建的小块:Refresh Cells - override color
您需要更新CSS
.ag-theme-balham-dark .ag-row .ag-cell-data-changed {
background-color: red !important;
}
仅.ag-theme-balham-dark .ag-cell-data-changed { ... }
不起作用,因为ag-grid应用具有!important
的样式。我们还需要覆盖它。
答案 1 :(得分:1)
styles: [`
.ag-theme-balham-dark .ag-cell-data-changed {
background-color:red !important;
}
`],
答案 2 :(得分:0)
以下为我工作:
.ag-value-change-value-highlight {
background-color:red !important;
}