Dennis_M
03-07-2022Cloud Apps
Blox - Color format words in text string
Hello Sisense Community,
Despite on-line HTML references, I cannot properly code a BloX "text" string to change color of specific words in the text line. I'm sure this is straightforward coding; c...
- 03-07-2022
One option is to enclose {panel:Leader} within <span> tag:
"items": [ { "type": "TextBlock", "size": "large", "horizontalAlignment": "center", "spacing": "Large", "weight": "default", "text": "Leader: <span style='color:yellow'>{panel:Leader}</span>", "style": { "text-align": "center", "font-weight": "default", "font-size": "30px", "background": "#124C87", "color": "white" } } ]
-Hari