Forum Discussion

Dennis_M's avatar
Dennis_M
Cloud Apps
03-07-2022
Solved

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...
  • harikm007's avatar
    03-07-2022

    Dennis_M 

    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