In my Grafana app I’ve configured several dashboards with several panels.
I want to show these individual panels within my sitemap.
The used links are working as expected if they are opened directly with Firefox.
In the below code, the variants 1-2 should open an individual panel, while the variants 3-4 should show the full dashboard with several panels.
Frame label="Trends"
{
Text label="1 - panel, height"
icon="line"
{
Webview url="http://192.168.43.105:3000/d/000000001/strom?orgId=1&from=now-1y&to=now&timezone=browser&kiosk&viewPanel=panel-34"
height=11
}
Text label="2 - panel, no height"
icon="line"
{
Webview url="http://192.168.43.105:3000/d/000000001/strom?orgId=1&from=now-1y&to=now&timezone=browser&kiosk&viewPanel=panel-34"
}
Text label="3 - all, height"
icon="line"
{
Webview url="http://192.168.43.105:3000/d/000000001/strom?orgId=1&from=now-1y&to=now&timezone=browser&kiosk"
height=11
}
Text label="4 - all, no height"
icon="line"
{
Webview url="http://192.168.43.105:3000/d/000000001/strom?orgId=1&from=now-1y&to=now&timezone=browser&kiosk"
}
The behavior I see in the Android app (3.20.7):
- the panel is shown as expected
- the panel is missing, just the Grafana controls are visible
- the first panel is shown as in 1, no scrolling available
- all panels are visible, scrolling is enabled
The behavior I see in the sitemap in Firefox:
- the panel is shown as expected
- from the panel, just the header line and the Grafana controls are visible
- the dashboard is visible as expected, scrolling is enabled
- from the dashboard only one line and the Grafana controls are visible, scrolling is enabled
I wasn’t able to get the behavior consistent on both systems.
Closest to my expectations have been the variants 1 and 4 in the Android app.
I’ve tested that with 5.1.4 and 5.2.1.
