Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I do not know how to produce web pages but would like to know how Kent State was able to produce this Power BI visual that has a vertical scroll bar to show additional data so one does not have to go to an additional page. I am trying to recreate something similar to what their layout is.
Kent State website: https://www.kent.edu/it/metrics
Solved! Go to Solution.
Hey,
if you inspect the webpage you will discover something like this
<iframe allowfullscreen="true" frameborder="0" height="1250"
src="https://app.powerbi.com/view?r=eyJ...OjN9" width="100%"></iframe>
So, what you see is not a visual with a vertical scroll bar, but instead it's an complete report rendered in an iframe.
Basically, design a report publish this report to Power BI Service, make sure that this report does not contain any confidential data 🙂
Use the Publish to Web
https://docs.microsoft.com/en-us/power-bi/service-publish-to-web
to create something that can be embedded into your website
Hopefully this is the answer you were looking for.
Regards,
Tom
Hey,
if you inspect the webpage you will discover something like this
<iframe allowfullscreen="true" frameborder="0" height="1250"
src="https://app.powerbi.com/view?r=eyJ...OjN9" width="100%"></iframe>
So, what you see is not a visual with a vertical scroll bar, but instead it's an complete report rendered in an iframe.
Basically, design a report publish this report to Power BI Service, make sure that this report does not contain any confidential data 🙂
Use the Publish to Web
https://docs.microsoft.com/en-us/power-bi/service-publish-to-web
to create something that can be embedded into your website
Hopefully this is the answer you were looking for.
Regards,
Tom
Thank you very much Tom !!
I really appreciate it. Have a great day !