<?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: Disable/hide include/exclude buttons within contex menu in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2129481#M32339</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that is a pretty good solution. Thanks for the hint!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
    <pubDate>Tue, 12 Oct 2021 10:49:11 GMT</pubDate>
    <dc:creator>lucmax</dc:creator>
    <dc:date>2021-10-12T10:49:11Z</dc:date>
    <item>
      <title>Disable/hide include/exclude buttons within contex menu</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2119538#M32256</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there a way to hide/disable the include and exclude button within the context menu when working with custom visuals?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2021-10-06 um 17.50.02.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/607743iEB040AB701A8BFB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2021-10-06 um 17.50.02.png" alt="Bildschirmfoto 2021-10-06 um 17.50.02.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within our visual we have a different way of filtering data and need to disable them so the users wont use these buttons and get confused. But we need the context menu itself to she the drillthrough button to our user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;lucmax&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 06 Oct 2021 15:52:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2119538#M32256</guid>
      <dc:creator>lucmax</dc:creator>
      <dc:date>2021-10-06T15:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Disable/hide include/exclude buttons within contex menu</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2126282#M32316</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/177236"&gt;@lucmax&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-unlink="true"&gt;Base on my research, currently Power BI don't support this feature.&amp;nbsp;&lt;A href="https://ideas.powerbi.com/ideas/idea/?ideaid=10520d25-eaa8-eb11-89ee-501ac50a7898" target="_self"&gt;&lt;STRONG&gt;Here&lt;/STRONG&gt;&lt;/A&gt; is one similar idea&amp;nbsp;shared on Power BI Ideas, you can vote it up and add your comments there to improve Power BI on this feature. Of course, you can also raise one new idea ticket on &lt;A href="https://ideas.powerbi.com/ideas/" target="_self"&gt;&lt;STRONG&gt;Power BI Ideas&lt;/STRONG&gt;&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 06:29:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2126282#M32316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-11T06:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disable/hide include/exclude buttons within contex menu</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2128307#M32332</link>
      <description>&lt;P&gt;HI &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/177236"&gt;@lucmax&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I too would like this option. While this isn't currently possible, if you just want drillthrough, one option could be to manage through &lt;A href="https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-visual-tooltips" target="_self"&gt;modern tooltips&lt;/A&gt; if you have them enabled in your report rather than the context menu. You'll need to pass a selection ID like for a report page tooltip also for drilldown and/or drill through to be available.&lt;/P&gt;
&lt;P&gt;Modern tooltip support has been added in &lt;FONT face="courier new,courier"&gt;powerbi-visuals-api&lt;/FONT&gt; 3.8.3 via the &lt;FONT face="courier new,courier"&gt;supportEnhancedTooltips&lt;/FONT&gt; property, and something like the following in your capabilities will enable it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
    ...
    "tooltips": {
        "supportEnhancedTooltips": true,
        "supportedTypes": {
            "default": true
        }
    },
    ...
}&lt;/LI-CODE&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 02:02:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2128307#M32332</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2021-10-12T02:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disable/hide include/exclude buttons within contex menu</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2129481#M32339</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that is a pretty good solution. Thanks for the hint!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 10:49:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disable-hide-include-exclude-buttons-within-contex-menu/m-p/2129481#M32339</guid>
      <dc:creator>lucmax</dc:creator>
      <dc:date>2021-10-12T10:49:11Z</dc:date>
    </item>
  </channel>
</rss>

