Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
https://github.com/Microsoft/PowerBI-JavaScript referencing an example from this page
The goal is to load an embedded report without the filter pane, I've included this statement in my div tag but the filter pane still appears and is 100% functional
+ I should note that I am passing a filter to the embedded reportSolved! Go to Solution.
@akagiz I misread your original comment! You said to pass it as a parameter to the URL! My mistake!
I did this to remove the filter pane: embedUrl + "&filterPaneEnabled=false"
Naturally the embedUrl will have the reportId as the first parameter with "?", thanks for your help!
I incorporated HTML code into my page to show a dashboard. Is it possible to remove this footer in red? ... In a dashboard with multiple graphic elements, is it possible to use only one of these graphics in my HTML page?
can you show the actual code referencing the <iframe> tag? in the src-attribute you are able to pass a parameter "filterPaneEnabled=false" which effectively hides the filter pane.
I have a followup question, because of you mentioning you are using a filter. I'm trying to use a filter that utilizes an "or" operator like such:
... oDataFilter: "Metrics/project eq 'auth'", ...
which works flawlessly. however when i try to combine that with the "or"-operator:
... oDataFilter: "Metrics/project eq 'auth' or Metrics/project eq 'alpha'", ...
the filter is no longer used and the rows no longer filtered. Could you help with that?
Greetings
Hello @akagiz, I also tried the 'or' operator and it broke the filter as well, it failed to filter any rows.
In addition, I added 'filterPaneEnabled="false"' to my iframe tag and the filter pane remained!
'<iframe style="width:85%;height:85%;" src="' + embedUrl + '" scrolling="no" allowfullscreen="true" filterPaneEnabled="false"></iframe>'
@akagiz I misread your original comment! You said to pass it as a parameter to the URL! My mistake!
I did this to remove the filter pane: embedUrl + "&filterPaneEnabled=false"
Naturally the embedUrl will have the reportId as the first parameter with "?", thanks for your help!