web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Disable Filter Pane Wi...
Power Pages
Answered

Disable Filter Pane Within Embedded Power BI Report

(1) ShareShare
ReportReport
Posted on by 19

Hello, 

Is it possible to hide the filter pane within an embedded report? The filter pane is currently hidden within PBI service, but when embedded to appears. 

 

jnguyen_0-1605202157795.png

 

Categories:
I have the same question (0)
  • Verified answer
    jnguyen Profile Picture
    19 on at

    I have found a solution, it needs to be done within the advanced section to add a javascript code to hide it.  Currently I believe there is a bug so editing the JS is a workaround. Code below:

    $( document ).ready(function() {
     var rpEle = $('.portal-pbi-embedded'); // select report element
     var report = powerbi.get(rpEle[0]); // get report instance
     // we want to update settings when the report is loaded
     report.on("loaded", function () {
     const newSettings = {
     panes: {
     filters :{
     visible: false // hide filter pane
     }
     }
     };
     report.updateSettings(newSettings)
     .catch(error => { console.log(error) });
     });
    });

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Pages

#1
Valantis Profile Picture

Valantis 59

#2
11manish Profile Picture

11manish 51

#3
omkarsupreme Profile Picture

omkarsupreme 27

Last 30 days Overall leaderboard