2016-10-21 11:01:34 +02:00
+++
2019-10-14 04:14:53 -04:00
title = "Sharing a Panel"
2016-10-21 11:01:34 +02:00
keywords = ["grafana", "dashboard", "documentation", "sharing"]
type = "docs"
[menu.docs]
parent = "dashboard_features"
weight = 6
+++
2015-03-26 17:55:07 +01:00
2019-10-14 04:14:53 -04:00
# Share Panel
2017-07-05 21:34:52 +02:00
2019-10-14 04:14:53 -04:00
Click a panel title to open the panel menu, then click share in the panel menu to open the Share Panel dialog. Here you have access to a link that will take you to exactly this panel with the current time range and selected template variables. Below are ways to share a panel.
2015-03-26 17:55:07 +01:00
2019-10-14 04:14:53 -04:00
## Direct Link Rendered Image
2017-07-05 21:34:52 +02:00
2019-09-17 19:24:03 +02:00
You also get a link to render a PNG image of the panel. Useful if you want to share an image of the panel. Read more about the requirements and how to configure image rendering [here ](/administration/image_rendering/ ).
2017-07-05 21:34:52 +02:00
Example of a link to a server-side rendered PNG:
2017-10-05 19:01:03 +02:00
```bash
2019-09-17 19:24:03 +02:00
https://play.grafana.org/d/000000012/grafana-play-home?orgId=1& from=1568719680173& to=1568726880174& panelId=4& fullscreen
2017-07-05 21:34:52 +02:00
```
#### Query String Parameters For Server-Side Rendered Images
- **width**: width in pixels. Default is 800.
- **height**: height in pixels. Default is 400.
- **tz**: timezone in the format `UTC%2BHH%3AMM` where HH and MM are offset in hours and minutes after UTC
- **timeout**: number of seconds. The timeout can be increased if the query for the panel needs more than the default 30 seconds.
2015-03-26 17:55:07 +01:00
2019-10-14 04:14:53 -04:00
## Embed Panel
2017-07-05 21:34:52 +02:00
2015-03-26 17:55:07 +01:00
You can embed a panel using an iframe on another web site. This tab will show you the html that you need to use.
2019-04-03 14:27:20 +02:00
2020-01-14 17:41:54 +01:00
> **Note:** This sharing requires [allow_embedding]({{< relref "../installation/configuration.md#allow-embedding" >}}) enabled and anonymous access, or proper configuration of the [cookie_samesite]({{< relref "../installation/configuration.md#cookie-samesite" >}}) setting.
2015-03-26 17:55:07 +01:00
Example:
```html
2017-04-28 13:43:00 +02:00
< iframe src = "https://snapshot.raintank.io/dashboard-solo/snapshot/y7zwi2bZ7FcoTlB93WN7yWO4aMiz3pZb?from=1493369923321&to=1493377123321&panelId=4" width = "650" height = "300" frameborder = "0" > < / iframe >
2015-03-26 17:55:07 +01:00
```
2015-04-13 14:12:03 +02:00
2015-03-26 17:55:07 +01:00
Below there should be an interactive Grafana graph embedded in an iframe:
2017-07-07 13:00:13 +02:00
2017-04-28 13:43:00 +02:00
< iframe src = "https://snapshot.raintank.io/dashboard-solo/snapshot/y7zwi2bZ7FcoTlB93WN7yWO4aMiz3pZb?from=1493369923321&to=1493377123321&panelId=4" width = "650" height = "300" frameborder = "0" > < / iframe >
2017-07-05 21:34:52 +02:00
2019-10-14 04:14:53 -04:00
#### Export Panel Data
2017-07-05 21:34:52 +02:00
2018-01-30 09:20:55 +01:00
{{< docs-imagebox img = "/img/docs/v50/export_panel_data.png" max-width = "500px" > }}
2017-07-05 21:34:52 +02:00
2018-01-30 09:20:55 +01:00
The submenu for a panel can be found by clicking on the title of a panel and then on the More submenu.
2017-07-05 21:34:52 +02:00
This menu contains two options for exporting data:
- The panel JSON (the specification and not the data) can be exported or updated via the panel context menu.
- Panel data can be exported in the CSV format for Table and Graph Panels.