powerbipowerbi-embeddedpowerbi-filters

How to hide "Page" and "Filter" while embedding a Power BI report using an iFrame


I am trying to embed a Power BI report in my web page using an iframe, but it shows page name and side right filter with the report in the web page, can we hide both page name and filter from the report?


Solution

  • You can configure the settings for the report. Set the below flags to false in order to achieve what you want in the settings.

    settings: {
      filterPaneEnabled: false,
      navContentPaneEnabled: false
    }
    

    You can read about it here:
    https://github.com/Microsoft/PowerBI-JavaScript/wiki/Embed-Configuration-Details