Forum Discussion
Dennes
9 years agoFrequent Visitor
Remove title and footer from embedded report
Hi, I'm creating an embedded report using this walkthrough ( https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-embed-sample-app-owns-data/). However, the resulting embedded ...
Johnmatta
Advocate I
8 years agoHere is the solution to this - just figured it out yesterday :)
In the first line of the embed link you will find two numbers for height and width. Play around with these two numbers as these number control the size of the embedded page.
My embed code that worked for embedding in Share point has the below numbers:
<iframe width="980" height="600"
In the first line of the embed link you will find two numbers for height and width. Play around with these two numbers as these number control the size of the embedded page.
My embed code that worked for embedding in Share point has the below numbers:
<iframe width="980" height="600"
Anonymous
8 years agoNot applicable
While that will work for a static web page it won't work so well when taking responsive web design into consideration.
People have monitors of varying sizes and pixel densities so arbitrarily picking a size isn't the best solution. Instead we tend to allocate a percent of the available space so that the window can grow and shrink to give people the best possible viewing experience. I really hope that the PowerBI Devs realize this and will enable responsive reports (similar to the power bi mobile experience) that can grow/shrink within the iframe properly like many other modern web tools.