As you see adding to colors to number columns in Dashboard Studio is straightforward via GUI editor for numbered fields. To add colors to a column based on a value you need to do it in the source .json of the dashboard. In my example, I created a table with a column name of "Status", which has the values of Success, Warning, Failed or Running. I wanted to change the color of the cell based on the value. Here is what I did in the Dashboard source under "Visualizations" (skip down the section "Column Format:) "visualizations": { "viz_table_1": { "type": "splunk.table", "options": { .......(many option fields)..... "columnFormat": { "Status": { "rowBackgroundColors": "> table | seriesByName('Status') | matchValue(matchConfig)" }, "dataSources": { "primary": "ds_search_1" }, "context": { "tableRowBackgroundColors": [ "#2C3033", "#32373D" ], "tableRowColor": [ "#A870EF" ], "matchConfig": [ { "match": "Success", "value": "#53A051" }, { "match": "Warning", "value": "#B6C75A" }, { "match": "Failed", "value": "#DC4E41" }, { "match": "Running", "value": "#006D9C" } ] I'd recommend looking at the Example Hub under Search>Dashboards>Examples for Dashboard Studio" in the Splunk UI. Hope it points you down the right path.
... View more