Hey there @ChrisPEL ,
Here are a couple of posts that can guide you on how to set up your tag colors. You are using an option list, not sure if mapped or manual, but that's where you can define the color for each tag:
Manual option list:
Goal: I am trying to dynamically assign colors to tags that are being populated into a single cell of a column with the format set as "Tags"
Issue: When unchecking "Assign tag colors automatically" there isn't a "color attribute" that appears, similar to when the format of the table column is "Tag.
Am I missing something? Or am I not able to set the color of Tags?
Mapped option list:
When Mapping values in Tag, Text Color doesn't auto populate, it populates Fallback text. Value, label, caption, and color auto populate.
I have a query and I transform the results. The transformer is:
function transformData(data) {
const arrayData = formatDataAsArray(data);
return arrayData.map(item => ({
value: item.spirit,
label:item.spirit,
color: 'white',
textColor:'black',
caption: 'blah'}));
}
return transformData(data);
I have tried renaming textColor various names but alβ¦
1 Like