We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da5892b commit efba92cCopy full SHA for efba92c
1 file changed
plugins/ui/src/js/src/elements/UITable/UITableModel.ts
@@ -511,6 +511,14 @@ class UITableModel extends IrisGridModel {
511
);
512
}
513
514
+ formatColorForCell(column: ModelIndex, row: ModelIndex): string | null {
515
+ const color = this.getFormatOptionForCell(column, row, 'color');
516
+ if (color != null) {
517
+ return this.colorMap.get(color) ?? color;
518
+ }
519
+ return null;
520
521
+
522
override colorForCell(
523
column: ModelIndex,
524
row: ModelIndex,
0 commit comments