Allow Parameter References in Tile Titles

Copper Contributor

I'm using Azure Monitor to build dashboards using tables in Azure Data Explorer. One visualization request I have is to allow a parameter reference in the title field of Tiles.

 

Azure support sent me a workaround using a Markdown tile, which works alright (but it does take up a lot of vertical space on the dashboard). But it would be great to be able to reference a parameter's value in a tile's title field.

 

Workaround:

1. Create a markdown tile: https://docs.microsoft.com/en-us/azure/azure-portal/azure-portal-markdown-tile

2. Use the print function to output markdown text, which allows you to concatenate a parameter's string value:

print strcat("## Parameter Value: ", _param_name)
0 Replies