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