Sitemap with Webview for Grafana panel

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):

  1. the panel is shown as expected
  2. the panel is missing, just the Grafana controls are visible
  3. the first panel is shown as in 1, no scrolling available
  4. all panels are visible, scrolling is enabled

The behavior I see in the sitemap in Firefox:

  1. the panel is shown as expected
  2. from the panel, just the header line and the Grafana controls are visible
  3. the dashboard is visible as expected, scrolling is enabled
  4. 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.

I use this embedding link for grafana panels in sitemaps:

Webview url="http://192.168.178.26:3003/d-solo/d92f64a0-d6ea-4520-9b04-6ce3c3afe3a0/wetter?orgId=1&panelId=5&tab=axes&from=now-250d" height=6

Please note .../d-solo/... instead of .../d/...

Thanks @nw378, the hint how to get the link with d-solo was very helpful. The height parameter seems to be mandatory.

Nevertheless, the Webview behaves differently when used on different devices. That’s a pity if you are designing the sitemap to be used on various devices.