Is there a way to make a dashboard fill the screen in HUB?

713
2
02-11-2022 01:23 PM
GayleNeufeld
Occasional Contributor

I'm trying to add a dashboard to my Hub site.  I want it to be shown full size within the HUB so that the user can just start using it without having to open it.  I don't want an icon or a thumbnail in a card.  I want the dashboard to show and be usable.  Is this possible?  

 

Thanks,
Gayle

0 Kudos
2 Replies
KlaraSchmitt
Esri Contributor

Hi @GayleNeufeld,

If you want to display a dashboard within your Hub homepage, you can use the iframe Card to display your dashboard as an embed. In the iframe settings height field, you will want to use vh units (eg. 100vh), which represent "viewport height," and you can actually do CSS calculations if you need to subtract the footer from that measurement.

calc(100vh - 100px)

100px being the height of your footer; re-adjust as necessary if your footer is a different height.


You can also set the settings on the Row Card that contains the iframe to a "Wide" layout to create a full-width effect and have the dashboard fill the width of a user's browser screen. 

0 Kudos
GayleNeufeld
Occasional Contributor

Hi @KlaraSchmitt Thank you!  I'll give it a try.  

0 Kudos