Is it possible to position the y axis of an element based on the width of another element?
I have a text element which displays the weather condition, so it could be “Rainy” or “Thunderstorm” I want a comma after the condition, but the comma needs to be a different colour.
So I have created a second text element which is just a comma. However the spacing differs when the condition reads “Thunderstorm”. If I position the comma after the word thunderstorm it then is massively off when the weather changes to “Rainy”.
I also can’t right align the weather condition as there is another text element before the weather condition
So it looks like this:
“cond”: “Thunderstorm”,
but obviously when the condition changes it then looks like this
“cond”: “Rainy” ,
The only other thing I can think is if I can have two different colours in a single line of text, but I don’t think that is possible either