<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to Hide Power BI iFrame Embedded Report Tabs in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2750255#M38425</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Super nice stuff here! Question: how can one hide the PowerBI footer at the end of an iframe?&lt;/P&gt;&lt;P&gt;Any chance there is a simple "&amp;amp;...." to add to the embed link?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Sep 2022 12:28:15 GMT</pubDate>
    <dc:creator>FMVigoCC</dc:creator>
    <dc:date>2022-09-06T12:28:15Z</dc:date>
    <item>
      <title>How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/121541#M4189</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to build a web app that embeds one particular Power BI report. Since this is only one report, I would like to hide "Filters" and the tabs. I was able to figure out how to hide "Filters" using&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;amp;filterPaneEnabled=false&lt;/PRE&gt;&lt;P&gt;which I found on the forums. However, there are no hints if it is possible to hide the report tabs. There is one report and there is no reason to have tabs (at least for my purposes).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="snip_20170202100451.png" style="width: 394px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/28096i7996418BC12BD15D/image-size/large?v=v2&amp;amp;px=999" role="button" title="snip_20170202100451.png" alt="snip_20170202100451.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is this possible? If so, where do we find all this information? How are we supposed to know what options are available for modifying the look?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 21:17:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/121541#M4189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-01T21:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/122322#M4212</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;You can surely hide the page navigation with &lt;A href="https://github.com/Microsoft/PowerBI-JavaScript" target="_self"&gt;Power BI Javascript API&lt;/A&gt;. Check a more elegant demo &lt;A href="https://microsoft.github.io/PowerBI-JavaScript/demo/pagenavigation.html" target="_self"&gt;Custom Page Navigation&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;html&amp;gt;
   &amp;lt;script src="https://microsoft.github.io/PowerBI-JavaScript/demo/bower_components/jquery/dist/jquery.js"&amp;gt;&amp;lt;/script&amp;gt;  
   &amp;lt;script src="https://microsoft.github.io/PowerBI-JavaScript/demo/bower_components/powerbi-client/dist/powerbi.js""&amp;gt;&amp;lt;/script&amp;gt;
   &amp;lt;script type="text/javascript"&amp;gt;
      var embedConfiguration = {
          type: 'report',
          accessToken: 'eyJ0YourTokenHereA',
          id: '719c43ad-xxxxx-f79e8f58c1a6',
          embedUrl: 'https://app.powerbi.com/reportEmbed?reportId=719c43ad-b663-xxxxxxx-f79e8f58c1a6',
&lt;STRONG&gt;      	settings: {
                      filterPaneEnabled: false,
                      navContentPaneEnabled: false
                    }&lt;/STRONG&gt; 
      }; 
      
      var report;
      
      window.onload = function () {  
      var $reportContainer = $('#reportContainer'); 
       report= powerbi.embed($reportContainer.get(0), embedConfiguration);
        
      }  
      
   &amp;lt;/script&amp;gt;
   &amp;lt;div id="reportContainer"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Feb 2017 06:26:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/122322#M4212</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-02-03T06:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/260510#M8032</link>
      <description>&lt;P&gt;Hi mhasanbulli,&lt;BR /&gt;&lt;BR /&gt;Below link will help you to solve your problems related to power bi embed with JS. Let me know if anything more needed.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html" target="_self"&gt;https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Abhi.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 05:12:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/260510#M8032</guid>
      <dc:creator>abhi123</dc:creator>
      <dc:date>2017-09-28T05:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/260512#M8033</link>
      <description>&lt;P&gt;Hi&amp;nbsp;mhasanbulli,&lt;BR /&gt;&lt;BR /&gt;Below link will help you to understand each and every terms of how to embed report , how to get pages details , and many more customization etc.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html" target="_self"&gt;https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Abhi.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 05:22:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/260512#M8033</guid>
      <dc:creator>abhi123</dc:creator>
      <dc:date>2017-09-28T05:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/359964#M10714</link>
      <description>&lt;P&gt;Is there a way to hide the page selector in the bottom of&amp;nbsp;the frame? the one tha looks like this: &amp;lt;&amp;nbsp; 1&amp;nbsp; of&amp;nbsp; 5&amp;nbsp; &amp;gt;&lt;/P&gt;&lt;P&gt;We want to deliver specific pages for especific users&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 17:07:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/359964#M10714</guid>
      <dc:creator>albertoderossi</dc:creator>
      <dc:date>2018-02-17T17:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/359965#M10715</link>
      <description>&lt;P&gt;Is there a way to hide the page selector in the botom of the frame? the one that looks like this: &amp;lt;&amp;nbsp; 1&amp;nbsp; &amp;nbsp;of&amp;nbsp; &amp;nbsp;5&amp;nbsp; &amp;nbsp;&amp;gt;&lt;/P&gt;&lt;P&gt;We need to deliver especific pages to specific users&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 17:11:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/359965#M10715</guid>
      <dc:creator>albertoderossi</dc:creator>
      <dc:date>2018-02-17T17:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI Particular page</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/520874#M16080</link>
      <description>&lt;P&gt;How to Hide Power BI Particular page out multiple page from the code side.&lt;/P&gt;&lt;P&gt;Not to hide from BI right click and check&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 07:53:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/520874#M16080</guid>
      <dc:creator>Nirav1</dc:creator>
      <dc:date>2018-09-20T07:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/622495#M18547</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the solution that you have marked but I couldnt hide the filters pane and navigation pane.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on an on-premise Power Bi Report server and trying to publish a report from the report server to the web.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I attach the URL query parameter &lt;STRONG&gt;"?rs:Embed=true"&lt;/STRONG&gt; to the report URL, I can see it in fullscreen. But When I add the &lt;STRONG&gt;"&amp;amp;filterPaneEnabled=false"&lt;/STRONG&gt; parameter, the URL just ignores it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest me what I am missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mithra&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 10:43:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/622495#M18547</guid>
      <dc:creator>veeramohan_m</dc:creator>
      <dc:date>2019-02-13T10:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/832873#M21244</link>
      <description>&lt;P&gt;If you have already rendered your report, you can remove the page tabs like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// get the container the report is embedded into
var reportContainer = document.getElementById('reportContainer');
// get the report
var report = powerbi.get(reportContainer);
// create new settings
var settings = {navContentPaneEnabled: false};
// update the settings
report.updateSettings(settings);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Oct 2019 17:17:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/832873#M21244</guid>
      <dc:creator>andyparkerson</dc:creator>
      <dc:date>2019-10-30T17:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/1130032#M23946</link>
      <description>&lt;P&gt;Add (concat) at the end of your PowerBi report URL:&lt;/P&gt;&lt;P&gt;&amp;amp;filterPaneEnabled=false&amp;amp;navContentPaneEnabled=false&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 18:38:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/1130032#M23946</guid>
      <dc:creator>ARodenbusch</dc:creator>
      <dc:date>2020-05-29T18:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/1426518#M26073</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/234735"&gt;@ARodenbusch&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;amp;navContentPaneEnabled=false - works great!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is there a list of all URL parameters I can use?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Oct 2020 20:47:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/1426518#M26073</guid>
      <dc:creator>michaelsh</dc:creator>
      <dc:date>2020-10-11T20:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2504882#M36012</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;I can't seem to get this to work. i'm not very smart when it comes to this so maybe i'm doing something wrong but when i copy paste your code and exchange the URL to my embed. i don't get any changes.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 12:57:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2504882#M36012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-10T12:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2565430#M36567</link>
      <description>&lt;P&gt;Unfortuntely, adding&amp;nbsp;&lt;STRONG&gt;&amp;amp;navContentPaneEnabled=false &lt;/STRONG&gt;at the end of iframe src doesn't work for me. Instead, I found a css hack to cut off the bottom navigation tabs from the UI by wrapping the iframe component with an additional div with shorter height.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div id="reportContainer" class="dds__d-none" style="height:804px; overflow-y:hidden"&amp;gt;
    &amp;lt;iframe id="reportFrame" onload="powerBiLoaded()" frameborder="0" seamless="seamless" class="viewer pbi-frame" style=" width: 100%; height: 840px;" src="https://example.com"&amp;gt;
    &amp;lt;/iframe&amp;gt;
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The navigation tabs in iframe is about 36px in height. Just have to set the &lt;STRONG&gt;outer container&amp;nbsp;height 36px less than the&amp;nbsp;iframe height&lt;/STRONG&gt; and &lt;STRONG&gt;overflow-y:hidden.&amp;nbsp;&lt;/STRONG&gt;This would hide the bottom navigation bar in the iframe from view.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 04:00:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2565430#M36567</guid>
      <dc:creator>Karman</dc:creator>
      <dc:date>2022-06-08T04:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2679423#M37712</link>
      <description>&lt;P&gt;Worked here, thank you very much!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2022 17:32:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2679423#M37712</guid>
      <dc:creator>duardo08</dc:creator>
      <dc:date>2022-08-03T17:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2750255#M38425</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Super nice stuff here! Question: how can one hide the PowerBI footer at the end of an iframe?&lt;/P&gt;&lt;P&gt;Any chance there is a simple "&amp;amp;...." to add to the embed link?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 12:28:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2750255#M38425</guid>
      <dc:creator>FMVigoCC</dc:creator>
      <dc:date>2022-09-06T12:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2865890#M39440</link>
      <description>&lt;P&gt;where do you put this coding&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 20:02:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/2865890#M39440</guid>
      <dc:creator>Google5ive</dc:creator>
      <dc:date>2022-10-26T20:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3268510#M42952</link>
      <description>&lt;P&gt;I know this is an old post.&amp;nbsp; However for anyone one else who comes cross this page and wonder why it did not work.&amp;nbsp; This will not work with the standard BI link you get once you publish report in our case to a workspace.&amp;nbsp; You will need to do the following to get the right link: -&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Once Published go to the file menu.&lt;/LI&gt;&lt;LI&gt;Then select &lt;EM&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;/&amp;gt; Embed Report&lt;/FONT&gt;&lt;/EM&gt;&lt;UL&gt;&lt;LI&gt;Followed by &lt;EM&gt;&lt;FONT color="#0000FF"&gt;Website or portal&lt;/FONT&gt;&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Copy the link below &lt;FONT color="#0000FF"&gt;&lt;EM&gt;Here's a link you can use to embed this content&lt;/EM&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Paste this into web browser&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Add the following to the end of the link&amp;nbsp;&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;&amp;amp;navContentPaneEnabled=false&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;You should now get a full screen page with no page navigations showing&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 13:03:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3268510#M42952</guid>
      <dc:creator>AdrianLock</dc:creator>
      <dc:date>2023-06-05T13:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3616652#M47527</link>
      <description>&lt;P&gt;Yes! This helped so much, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a follow-up question, When I copy and paste that, it hides all pages except for the first report page. Is it possible to select which page I want to show and hide all others? Thanks again!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 01:07:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3616652#M47527</guid>
      <dc:creator>AJTK</dc:creator>
      <dc:date>2024-01-05T01:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3617341#M47601</link>
      <description>&lt;P&gt;It will only show the reports that are made visible.&amp;nbsp; Plus you must have a navigation bar setup as well to replace the default one you have just hidden&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 08:42:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/3617341#M47601</guid>
      <dc:creator>AdrianLock</dc:creator>
      <dc:date>2024-01-05T08:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Power BI iFrame Embedded Report Tabs</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/4608867#M59823</link>
      <description>&lt;P&gt;Were you able to resolve this?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:51:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/4608867#M59823</guid>
      <dc:creator>aiswaryabhole</dc:creator>
      <dc:date>2025-03-13T14:51:31Z</dc:date>
    </item>
  </channel>
</rss>

