Pulling html code from an SQL database and displaying in Grafana

Hi all,

I am quite new to Grafana. I’m currently making my first dashbaord. I’m pulling data from an sql database (solarWinds mysql). All has gone well until I try to pull some html code from the database. When I try to pull this data in to Grafana, it displays the actual html code, whereas I want it to display the results of the code (the difference between reading the source of an html page, or displaying the actual page). Is this something that can be done?

Thanks,
Phil

Use table panel -> Column Styles -> create style for html column - Type: String, Sanitize HTML: check. But it doesn’t support full HTML - only some HTML tags/properties.

Thanks so much, this worked perfectly!

I want to render some html code in a table in an SQL Query , something of the form:
<span><font color="#F2495C">xyz</font></span>
But when i query it, it shows the html code itself literally and not the rendered code

How can i solve this?