Forum Discussion
Embedding Power BI Report hidding tab
- Anonymous5 years ago
Hi Olenard,
AFAIK, current power bi embedded seems not provide these options to custom navigation panel.
Maybe you can submit an idea to add options to control the report navigation panel or try to use power bi javascript to config them:Solved: How to Hide Power BI iFrame Embedded Report Tabs - Microsoft Power BI Community
Regards,
Xiaoxin Sheng
- 5 years ago
Page navigation is enabled/visible by default, though it's possible to disable/hide it by either
- adding the attribute on the element<div ... powerbi-settings-nav-content-pane-enabled="false"></div>
-or specifying the setting properties in the embed report configuration:
var embedConfig = {
...
settings: {
navContentPaneEnabled: false
}
};You can check the following sample Power BI JavaScript - pagenavigation demo
Hi Olenard,
AFAIK, current power bi embedded seems not provide these options to custom navigation panel.
Maybe you can submit an idea to add options to control the report navigation panel or try to use power bi javascript to config them:
Solved: How to Hide Power BI iFrame Embedded Report Tabs - Microsoft Power BI Community
Regards,
Xiaoxin Sheng