<?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 Hide Custom Filters from Filters Pane in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/148276#M5081</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to hide the custom filter added in Power BI Embedded in iframe?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added a custom filter like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var filter = new models.BasicFilter({&lt;BR /&gt;&amp;nbsp; &amp;nbsp; table: "USERS",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; column: "Role"&lt;BR /&gt;}, "Manager", [""]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Filters pane has other filters that were created while creating this report.I want to hide this filter alone in Filters pane.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please guide me how I can achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 24 Mar 2017 07:34:20 GMT</pubDate>
    <dc:creator>ganeshm</dc:creator>
    <dc:date>2017-03-24T07:34:20Z</dc:date>
    <item>
      <title>Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/148276#M5081</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to hide the custom filter added in Power BI Embedded in iframe?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added a custom filter like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var filter = new models.BasicFilter({&lt;BR /&gt;&amp;nbsp; &amp;nbsp; table: "USERS",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; column: "Role"&lt;BR /&gt;}, "Manager", [""]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Filters pane has other filters that were created while creating this report.I want to hide this filter alone in Filters pane.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please guide me how I can achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 07:34:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/148276#M5081</guid>
      <dc:creator>ganeshm</dc:creator>
      <dc:date>2017-03-24T07:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/148650#M5082</link>
      <description>&lt;P&gt;Any update on this ?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 18:24:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/148650#M5082</guid>
      <dc:creator>ganeshm</dc:creator>
      <dc:date>2017-03-24T18:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/149075#M5083</link>
      <description>&lt;P&gt;Could anyone please let me know whether this is possible?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2017 14:52:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/149075#M5083</guid>
      <dc:creator>ganeshm</dc:creator>
      <dc:date>2017-03-26T14:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/149354#M5085</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/23592"&gt;@ganeshm&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;AFAIK, it is not possbile to&amp;nbsp;hide the specific filter alone. You can hide the whole filter panel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var filter = new models.BasicFilter({
    table: "USERS",
    column: "Role"
}, "Manager", [""]); 

var embedConfiguration = {
    type: 'report',
    accessToken: 'token',
    embedUrl: 'https://app.powerbi.com/reportEmbed?reportId=b7441d21-dabb-4d81-89b6-0c7c5bd6426d',
	filters:[filter], // the filters is an array here, you can add more filter like [filter1,filter2,filter3]
	settings: {
        &lt;STRONG&gt;filterPaneEnabled:&lt;/STRONG&gt; False //hide the filterPane so that your user can't change the filter to see more data, this is not a strong security, anyone who's familar with javascript can bypass it
    }

}; &lt;/PRE&gt;
&lt;P&gt;You can submit your idea at &lt;A href="http://ideas.powerbi.com" target="_self"&gt;Power BI Ideas&lt;/A&gt; and vote it up.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2017 09:20:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/149354#M5085</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-03-27T09:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/150088#M5101</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any development going on to&amp;nbsp;address this idea? I have seen similar ideas raised in this community.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly let me know if this is in the pipeline for the coming months?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 13:47:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/150088#M5101</guid>
      <dc:creator>ganeshm</dc:creator>
      <dc:date>2017-03-28T13:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Custom Filters from Filters Pane</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/1163122#M24191</link>
      <description>&lt;P&gt;There is another issue , when we hide the filter pane it appears back when tile is clicked. any one facing this issue or have solution for same?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 13:08:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hide-Custom-Filters-from-Filters-Pane/m-p/1163122#M24191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-16T13:08:45Z</dc:date>
    </item>
  </channel>
</rss>

