Skip to content

Commit c9f8721

Browse files
committed
updates
1 parent d7cbd1e commit c9f8721

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powerapps-docs/maker/portals/admin/add-powerbi-report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ For example:
5555

5656
## Hide the Filters pane in portals web page
5757

58-
Power BI allows you to [hide the Filters pane](https://docs.microsoft.com/power-bi/create-reports/power-bi-report-filter#hide-the-filters-pane-while-editing) allowing extra space on screen when Filters pane isn't needed. Similarly, you can hide the Filters pane for a dashboard or a report embedded on a web page in your portal.
58+
Power BI allows you to [hide the Filters pane](https://docs.microsoft.com/power-bi/create-reports/power-bi-report-filter#hide-the-filters-pane-while-editing) allowing extra space on screen when Filters pane isn't needed. Similarly, you can hide the Filters pane for a dashboard or a report embedded on a web page in your portal. To hide, you can use the [Power BI JavaScript embed configuration](https://github.com/Microsoft/PowerBI-JavaScript/wiki/Embed-Configuration-Details) attribute called `powerbi-settings-filter-pane-enabled` and set it's value to `false`.
5959

60-
To hide Filters pane in portals web page, use the following sample code in your web page's [copy (HTML)](../configure/web-page.md#web-page-attributes) attribute.
60+
For example, use the following sample code in your web page's [copy (HTML)](../configure/web-page.md#web-page-attributes) attribute to hide Power BI Filters pane in portals.
6161

6262
```html
6363
<div id="hide-powerbi-filters">
6464
{% powerbi authentication_type:"powerbiembedded" path:"https://app.powerbi.com/groups/00000000-0000-0000-0000-000000000000/reports/00000000-0000-0000-0000-000000000000/" %}
6565
</div>
6666
<script>
6767
$(function() {
68-
//Set the "powerbi-settings-filter-pane-enabled" setting to "false" to hide the Power BI Filters panel
68+
//Set the "powerbi-settings-filter-pane-enabled" setting to "false" to hide the Power BI Filters pane.
6969
$('#hide-powerbi-filters.powerbi').attr("powerbi-settings-filter-pane-enabled", "false");
7070
})
7171
</script>

0 commit comments

Comments
 (0)