Forum Discussion
jslade
1 year agoHelper I
Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application
We are using Powerbi-Client to embed our power bi reports into our web application. However, we have a lot of white space between our iFrame and the report and are looking for a way to remove the wh...
Anonymous
1 year agoNot applicable
Hi jslade ,
I think you can try code as below.
Method1:
<iframe src="your_report_url" style="width: 100%; height: 100%; border: none; overflow: hidden;" allowfullscreen="true"></iframe>
Method2:
<iframe src="your_report_url" style="width: 2400px; height: 1400px; border: none;"></iframe>
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jslade
1 year agoHelper I
Thank you I will give it a try and let you know how it goes.