Hi,
is it possible to have different titles in json dashboards / panels depending on a condition?
Here is a small, stripped example:
{
"title": "My Dashboard",
"services": {...},
"rows": [
{
"title": "Main"
}
]
}
What I would like to have get the information of the title "My Dashboard" from a Javascript funtion to store there some logic (the title can have some differences depending on the system state).
Something like:
{
"title": determineDashboardTitle(),
"services": {...},
"rows": [
{
"title": "Main"
}
]
}
Is this possible?