Trellis change font color of the row labels

Hey! Im building a vega diagram using something similar to this trellis example:

Its split by row and I can't change the font color of (in the example above gender & male feminine)

I was hoping
"row": {"field": "gender", "type": "nominal", "titlecolor"/"labelcolor":"white"},
would work but it doesnt seem to!

Help would be appreciated.

Hi

I guess you don't want to show those labels? Try the following:
"row": {"field": "gender", "type": "nominal", "header": { "labels": false}},

hope this helps,
best,
Matthias

Sorry, not exactly. I want those labels, but I want to change the colour from black! But yup, it helped, didnt know the tag was "header". Issue fixed.

"header":{titleColor:"white", labelColor:"white"}

Thanks Matthias!

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.