Hi All
I there any way to freeze the tile in the dashboard when we scroll down in the dashboard.
You might be able to do it in Classic SimpleXML dashboards - would this be an option for you?
Klick on your table in Dashboard Studio and choose Data display --> Header row --> Fixed
Hi Paul
Thanks for the information.
However, the below heading it's not actually a single table it's a markdown text.
The below highlighted are individual markdown text
Where i don't find any option
Ah okay, I'm pretty sure that this is not possible but maybe someone else has a solution for it.
Is there any solution ...
Try something like this (in SimpleXML of course!)
<row id="banner">
<panel>
<html>
<style>
div[id="banner"].dashboard-row {
top: 0;
position: sticky;
z-index: 9999;
}
div[id="banner"] div {
background-color: yellow;
}
</style>
<h1>Your banner panel</h1>
</html>
</panel>
</row>