Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I'm developing a PowerBI report site using the .Net Core API for PowerBI for a customer using the reports they already have created.
I have the report working fine in the Browser which is great. The customer would like to hide the tabs at the bottom of the web page as the users of the report will not need to access these pages (see the image - area I would like to hide is outlined in red).
Any advice as to how this can be accomplished would be greatly appreciated .
Solved! Go to Solution.
Hi, @PowerBIUserHoop
1.Firstly, you can try disabling page navigation by using &navContentPaneEnabled=false to hide the page navigation. Below is a screenshot of the relevant response:
For further details, please refer to:
2.Secondly, you can also hide the navigation pane within an iframe:
<div id="content">
<div style="height:580px;width:960px">
<iframe width="960" height="580" src="[URL LINK]" frameborder="0" height="100%" width="100%" style="position:absolute; clip:rect(0px,1100px,543px,0px);
bottom:-0px; allowFullScreen="true" ></iframe>
</div>
</div>
For further details, please refer to:
Hiding Navigation Pane in iframe - Microsoft Fabric Community
3.Finally, you can achieve this using Javascript:
For further details, please refer to:
Solved: Power BI- How to hide page navigation bar when emb... - Microsoft Fabric Community
Add a Power BI component | Microsoft Learn
Of course, if you have any new discoveries or questions, please feel free to get in touch with us.
Best Regards,
Leroy Lu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That worked perfectly!
// Enable this setting to remove tabs from embedded report
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false,
}
Thanks for the advice 👍
Hi, @PowerBIUserHoop
1.Firstly, you can try disabling page navigation by using &navContentPaneEnabled=false to hide the page navigation. Below is a screenshot of the relevant response:
For further details, please refer to:
2.Secondly, you can also hide the navigation pane within an iframe:
<div id="content">
<div style="height:580px;width:960px">
<iframe width="960" height="580" src="[URL LINK]" frameborder="0" height="100%" width="100%" style="position:absolute; clip:rect(0px,1100px,543px,0px);
bottom:-0px; allowFullScreen="true" ></iframe>
</div>
</div>
For further details, please refer to:
Hiding Navigation Pane in iframe - Microsoft Fabric Community
3.Finally, you can achieve this using Javascript:
For further details, please refer to:
Solved: Power BI- How to hide page navigation bar when emb... - Microsoft Fabric Community
Add a Power BI component | Microsoft Learn
Of course, if you have any new discoveries or questions, please feel free to get in touch with us.
Best Regards,
Leroy Lu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
3 | |
3 | |
3 | |
2 | |
2 |