<?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: Hiding the tabs at the bottom of a PowerBI report in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4309775#M58518</link>
    <description>&lt;P&gt;That worked perfectly!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; // Enable this setting to remove tabs from embedded report
 settings: {
     filterPaneEnabled: false,
     navContentPaneEnabled: false,
 }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the advice&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Dec 2024 11:53:21 GMT</pubDate>
    <dc:creator>PowerBIUserHoop</dc:creator>
    <dc:date>2024-12-02T11:53:21Z</dc:date>
    <item>
      <title>Hiding the tabs at the bottom of a PowerBI report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4307523#M58497</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm developing a PowerBI report site using the .Net Core API for PowerBI for a customer using the reports they already have created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the report working fine in the Browser which is great.&amp;nbsp; The customer would like to hide the tabs at the bottom of the web page as the users of the report will not need to access these pages (see the image - area I would like to hide is outlined in &lt;FONT color="#FF0000"&gt;red&lt;/FONT&gt;)&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tabs hide.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1207950iBB1899BF87F04C02/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tabs hide.png" alt="Tabs hide.png" /&gt;&lt;/span&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any advice as to how this can be accomplished would be greatly appreciated .&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2024 11:33:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4307523#M58497</guid>
      <dc:creator>PowerBIUserHoop</dc:creator>
      <dc:date>2024-11-29T11:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the tabs at the bottom of a PowerBI report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4309152#M58508</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Hi,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/834664"&gt;@PowerBIUserHoop&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;Firstly, you can try disabling page navigation by using &amp;amp;navContentPaneEnabled=false to hide the page navigation. Below is a screenshot of the relevant response:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_0-1733111310814.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1208582i11DCA7E0B10B879C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_0-1733111310814.png" alt="vlinyulumsft_0-1733111310814.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For further details, please refer to:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="https://stackoverflow.com/questions/59963916/how-to-hide-page-and-filter-while-embedding-a-power-bi-report-using-an-ifram" target="_blank"&gt;&lt;SPAN&gt;powerbi - How to hide "Page" and "Filter" while embedding a Power BI report using an iFrame - Stack Overflow&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;Secondly, you can also hide the navigation pane within an iframe:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;div id="content"&amp;gt;
    &amp;lt;div style="height:580px;width:960px"&amp;gt;
      &amp;lt;iframe width="960" height="580" src="[URL LINK]" frameborder="0" height="100%" width="100%" style="position:absolute; clip:rect(0px,1100px,543px,0px);
            bottom:-0px; allowFullScreen="true" &amp;gt;&amp;lt;/iframe&amp;gt;
   &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/LI-CODE&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For further details, please refer to:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Developer/Hiding-Navigation-Pane-in-iframe/m-p/162759" target="_blank"&gt;&lt;SPAN&gt;Hiding Navigation Pane in iframe - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;3.Finally, you can achieve this using Javascript&amp;amp;colon;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_1-1733111348555.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1208583i215224AA4045FC55/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_1-1733111348555.png" alt="vlinyulumsft_1-1733111348555.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For further details, please refer to:&lt;/P&gt;
&lt;P style="margin: 0in;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Developer/Power-BI-How-to-hide-page-navigation-bar-when-embedding-using/m-p/2172287" target="_blank"&gt;&lt;SPAN&gt;Solved: Power BI- How to hide page navigation bar when emb... - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/power-pages/getting-started/add-power-bi#how-to-use-powerbi-client-javascript-library-in-portals" target="_blank"&gt;&lt;SPAN&gt;Add a Power BI component | Microsoft Learn&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Of course, if you have any new discoveries or questions, please feel free to get in touch with us.&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider Accept it &lt;EM&gt;&lt;STRONG&gt;as the solution&lt;/STRONG&gt; &lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 03:49:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4309152#M58508</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-02T03:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the tabs at the bottom of a PowerBI report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4309775#M58518</link>
      <description>&lt;P&gt;That worked perfectly!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; // Enable this setting to remove tabs from embedded report
 settings: {
     filterPaneEnabled: false,
     navContentPaneEnabled: false,
 }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the advice&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 11:53:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hiding-the-tabs-at-the-bottom-of-a-PowerBI-report/m-p/4309775#M58518</guid>
      <dc:creator>PowerBIUserHoop</dc:creator>
      <dc:date>2024-12-02T11:53:21Z</dc:date>
    </item>
  </channel>
</rss>

