How to control kibana shared graph size

my scenario is as follows,

  1. create a visual graph
  2. include the graph in my own site(dashboard) with iframe

the thing is how can i control the size of target page(kibana shared ) or make it auto-resize?

The iframe tag which you're using to embed the visualization has "height" and "width" attributes that you can use to control the size of the embedded visualization:

<iframe src="..." height="500px" width="500px"></iframe>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.