<?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 Support other visuals' selection in custom slicer in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/663203#M19011</link>
    <description>&lt;P&gt;Hi, I have the following task.&lt;/P&gt;&lt;P&gt;Table DATA has columns: Date, Type, Company, Object, Device, Actual. Table DATES has only one column Date (the table is&amp;nbsp;DISTINCT(DATA[Date]) in DAX). I need to draw chart for some days (two on the picture) before selected date. So I put default slicer visual (top center) to select DATES[Date] and create measure (center) to get max value. After that I try to make custom slicer visual (right) to select required days for chart visual (bottom right) from DATA[Date] using defined measure.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="testerPicture.PNG" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/157140i216E7B08774E1EA3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="testerPicture.PNG" alt="testerPicture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Used code:&lt;/P&gt;&lt;PRE&gt;// ISelectionManager creation in visual constructor
this.selectionManager = options.host.createSelectionManager();

// ISelectionManager usage in visual update
const selection: ISelectionId[] = [];
// ... filling selection ...
this.selectionManager.select(selection);&lt;/PRE&gt;&lt;P&gt;Question A. Is there any simplier approach?&lt;/P&gt;&lt;P&gt;When I try to select specific item in default matrix visual (left) that last selection is cancelled.&lt;/P&gt;&lt;P&gt;Question B. How can I support selection made in other visuals (default or custom) in my custom slicer visual?&lt;/P&gt;&lt;P&gt;I saw &lt;A href="https://github.com/Microsoft/powerbi-visuals-sampleslicer" target="_blank" rel="noopener"&gt;Sample Slicer&lt;/A&gt;&amp;nbsp;project but there is too much code with insufficient description.&lt;/P&gt;&lt;P&gt;Question C. Does "Sample Slicer" contain information that I need? Where should I watch?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Apr 2019 12:35:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-05T12:35:15Z</dc:date>
    <item>
      <title>Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/663203#M19011</link>
      <description>&lt;P&gt;Hi, I have the following task.&lt;/P&gt;&lt;P&gt;Table DATA has columns: Date, Type, Company, Object, Device, Actual. Table DATES has only one column Date (the table is&amp;nbsp;DISTINCT(DATA[Date]) in DAX). I need to draw chart for some days (two on the picture) before selected date. So I put default slicer visual (top center) to select DATES[Date] and create measure (center) to get max value. After that I try to make custom slicer visual (right) to select required days for chart visual (bottom right) from DATA[Date] using defined measure.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="testerPicture.PNG" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/157140i216E7B08774E1EA3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="testerPicture.PNG" alt="testerPicture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Used code:&lt;/P&gt;&lt;PRE&gt;// ISelectionManager creation in visual constructor
this.selectionManager = options.host.createSelectionManager();

// ISelectionManager usage in visual update
const selection: ISelectionId[] = [];
// ... filling selection ...
this.selectionManager.select(selection);&lt;/PRE&gt;&lt;P&gt;Question A. Is there any simplier approach?&lt;/P&gt;&lt;P&gt;When I try to select specific item in default matrix visual (left) that last selection is cancelled.&lt;/P&gt;&lt;P&gt;Question B. How can I support selection made in other visuals (default or custom) in my custom slicer visual?&lt;/P&gt;&lt;P&gt;I saw &lt;A href="https://github.com/Microsoft/powerbi-visuals-sampleslicer" target="_blank" rel="noopener"&gt;Sample Slicer&lt;/A&gt;&amp;nbsp;project but there is too much code with insufficient description.&lt;/P&gt;&lt;P&gt;Question C. Does "Sample Slicer" contain information that I need? Where should I watch?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 12:35:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/663203#M19011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T12:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/664442#M19034</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To merge filtration, you should use &lt;A href="https://github.com/Microsoft/powerbi-visuals-sampleslicer/blob/master/src/sampleSlicer.ts#L839" target="_self"&gt;applyJsonFilter with "merge" option&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 13:24:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/664442#M19034</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-08T13:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667472#M19072</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/112988"&gt;@v-evelk&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Before I had received your answer I decided to build custom chart visual and filter dates programmaticaly there. After I had completed I returned to topic problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I describe steps to achieve the goal. It may be useful to someone.&lt;/P&gt;&lt;P&gt;1) Install&amp;nbsp;&lt;A href="https://github.com/Microsoft/powerbi-models" target="_blank" rel="noopener"&gt;powerbi-models&lt;/A&gt; using following command in project folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;npm install --save powerbi-models&lt;/PRE&gt;&lt;P&gt;2) Add link to &lt;EM&gt;pbiviz.json&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;"externalJS": [
    "node_modules/powerbi-models/dist/models.js"
  ]&lt;/PRE&gt;&lt;P&gt;3) Add link to &lt;EM&gt;tsconfig.json&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;"files": [
    "node_modules/powerbi-models/dist/models-noexports.d.ts"
  ]&lt;/PRE&gt;&lt;P&gt;4) Add following code to&amp;nbsp;&lt;EM&gt;update&lt;/EM&gt; method. (The date to be selected should be under first (zero index) category.)&lt;/P&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;PRE&gt;                    const conditions: IAdvancedFilterCondition[] = [
                        {
                            operator: "GreaterThanOrEqual",
                            value: new Date(startMillis) // First date.
                        },
                        {
                            operator: "LessThanOrEqual",
                            value: new Date(endMillis) // Last date.
                        }
                    ];
                    const categories: DataViewCategoricalColumn =
                        options.dataViews[0].categorical.categories[0];
                    const target: IFilterColumnTarget = {
                        table: categories.source.queryName.substr(
                            0, categories.source.queryName.indexOf('.')),
                        column: categories.source.displayName
                    };
                    const filter: IAdvancedFilter =
                        new window['powerbi-models']
                            .AdvancedFilter(target, "And", conditions);
                    this.visualHost.applyJsonFilter(
                        filter, "general", "filter", FilterAction.merge
                    );&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 10:57:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667472#M19072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-11T10:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667514#M19075</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/112988"&gt;@v-evelk&lt;/a&gt;, additional question. How can one support others' selection in custom matrix visual? I see&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;IFilterKeyHierarchyTarget&lt;/EM&gt; but how to fill it and how to set &lt;EM&gt;conditions&lt;/EM&gt; for all levels of hierarchy? This&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Custom-Visuals-Development/Advanced-Filter-API/m-p/273598/highlight/false#M319" target="_self"&gt;topic&lt;/A&gt;&amp;nbsp;tells that only one filter can be applied.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Apr 2019 12:03:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667514#M19075</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-11T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667711#M19082</link>
      <description>&lt;P&gt;I am not sure about matrix. If it uses selectionManger, you can try to use selectionManager with the second parameter as 'true' to enable multi-selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;this.selectionManager.select(selector, true).then((ids: ISelectionId[]) =&amp;gt; {
    //called when setting the selection has been completed successfully
});&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding&amp;nbsp;&lt;EM&gt;IFilterKeyHierarchyTarget&amp;nbsp;&lt;/EM&gt;I will ask our engineers and provide info here later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 14:43:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/667711#M19082</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-11T14:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668259#M19094</link>
      <description>&lt;P&gt;Yes, I use&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;ISelectionManager&lt;/EM&gt; to filter data from custom matrix visual.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, &lt;EM&gt;true&lt;/EM&gt; in &lt;EM&gt;select&lt;/EM&gt; doesn't change the behavior. My custom visuals (matrix and slicer) go to infinite selection loop. Standard line chart shows data selected by matrix for a second. Then it shows data selected by slicer for another second. After that it shows data selected by matrix again. And this&amp;nbsp;&lt;SPAN&gt;process&lt;/SPAN&gt; continues until I close Power BI.&lt;/P&gt;&lt;P&gt;With standard matrix visual all the elements work fine.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 05:42:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668259#M19094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-12T05:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668538#M19100</link>
      <description>&lt;P&gt;Probably standard matrix uses filters too.&lt;/P&gt;&lt;P&gt;I am not sure that it is possible to merge filters and selections, you should use one of these approaches if you want to combine selection or filtration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 09:28:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668538#M19100</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-12T09:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668555#M19101</link>
      <description>&lt;P&gt;"I see&amp;nbsp;&lt;EM&gt;IFilterKeyHierarchyTarget&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;but how to fill it and how to set&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;conditions&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for all levels of hierarchy? This&amp;nbsp;&lt;/SPAN&gt;&lt;A title="" href="https://community.powerbi.com/t5/Custom-Visuals-Development/Advanced-Filter-API/m-p/273598/highlight/false#M319" target="_self"&gt;topic&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;tells that only one filter can be applied."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding this question, I don't have any examples of using this filter, but I can say that you can pass an array of filters into applyJsonFilter function that will be mean logical AND.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 09:38:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/668555#M19101</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-12T09:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/669332#M19113</link>
      <description>&lt;P&gt;I replace selection in custom matrix visual with filtering through &lt;EM&gt;applyJsonFilter&lt;/EM&gt;. Now Power BI does not hang and I can cancel filtering by another click. But all the visuals keep refreshing repeatedly.&lt;BR /&gt;I can guess the following. One custom visual applies filter. So all other visuals should be refreshed. When refreshing another custom visual applies its filter. All other visuals (including first one) should be refreshed again. First custom visual applies its filter again. And this process continues.&lt;BR /&gt;Am I right that there is no control on filters duplication?&lt;BR /&gt;If my giess is correct can custom visual recognize that its filter is applied now?&lt;BR /&gt;If I'm wrong what is the problem?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2019 10:14:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/669332#M19113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-14T10:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/671209#M19140</link>
      <description>&lt;P&gt;I can say that it depends on a visual and how it is implemented. Since you use filtration, your update options must contain something like options.jsonFilters so, you can detect whether there are any already applied filters or not.&lt;/P&gt;&lt;P&gt;Also, since you switched Selection model to Filtration model I can recommend you to remove visuals from your report and add them again because there is a chance that some old filtration or selection was saved and now it breaks filtration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 15:28:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/671209#M19140</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-16T15:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/671789#M19149</link>
      <description>&lt;P&gt;(I rebuilt report.)&lt;/P&gt;&lt;P&gt;I observe several problems with field &lt;EM&gt;options.jsonFilters&lt;/EM&gt; in &lt;EM&gt;update&lt;/EM&gt; method.&lt;BR /&gt;A) First of all I apply filters like following.&lt;/P&gt;&lt;PRE&gt;{
    "$schema": "http://powerbi.com/product/schema#advanced",
    "target": {
        "table": "Data",
        "column": "Type"
    },
    "filterType": 0,
    "logicalOperator": "And",
    "conditions": [
        {
            "operator": "Is",
            "value": "Type2"
        }
    ]
}&lt;/PRE&gt;&lt;P&gt;But on next iteration &lt;EM&gt;options.jsonFilters&lt;/EM&gt; contains another type of filter.&lt;/P&gt;&lt;PRE&gt;{
    "$schema": "http://powerbi.com/product/schema#basic",
    "target": {
        "table": "Data",
        "column": "Type"
    },
    "filterType": 1,
    "operator": "In",
    "values": [
        "Type2"
    ]
}&lt;/PRE&gt;&lt;P&gt;Is it normal behavior?&lt;/P&gt;&lt;P&gt;B) Does field&amp;nbsp;&lt;EM&gt;options.jsonFilters&lt;/EM&gt; contain filters applied by &lt;EM&gt;this&lt;/EM&gt; visual only?&lt;BR /&gt;C) Are there any methods to compare filters in view of issue A?&lt;BR /&gt;D) In custom matrix visual field &lt;EM&gt;options.jsonFilters&lt;/EM&gt; contains applied filters. But in custom slicer visual it is always empty. Why so?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 07:55:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/671789#M19149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-17T07:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672038#M19152</link>
      <description>&lt;P&gt;A) It is a regular situation that filter looks not exactly the same as initial when you get it from&amp;nbsp;&lt;EM&gt;options.jsonFilters&lt;/EM&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;It happens because filter will be converted into a query inside Power BI and then will be restored form this query when you receive it.&lt;/P&gt;&lt;P&gt;B)&amp;nbsp;&lt;EM&gt;options.jsonFilters&lt;/EM&gt;&amp;nbsp;should contain all applied filters as I know.&lt;/P&gt;&lt;P&gt;C) I am not sure&lt;/P&gt;&lt;P&gt;D) It may happens if your custom visual uses an old API because jsonFilters appeared only in API 2.2 but it is better to use the latest API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 11:49:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672038#M19152</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-17T11:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672072#M19154</link>
      <description>&lt;P&gt;&lt;EM&gt;pbiviz.json&lt;/EM&gt; of both projects contains&lt;/P&gt;&lt;PRE&gt;"apiVersion": "2.3.0"&lt;/PRE&gt;&lt;P&gt;May filters visibility depend on either type of filtered column or &lt;EM&gt;kind&lt;/EM&gt; in &lt;EM&gt;dataRoles&lt;/EM&gt; (&lt;EM&gt;capabilities.json&lt;/EM&gt;)? It is &lt;EM&gt;Text&lt;/EM&gt; in &lt;EM&gt;Grouping&lt;/EM&gt; for custom matrix visual and &lt;EM&gt;Date&lt;/EM&gt; in &lt;EM&gt;GroupingOrMeasure&lt;/EM&gt; for custom slicer visual.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 12:29:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672072#M19154</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-17T12:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Support other visuals' selection in custom slicer</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672234#M19158</link>
      <description>&lt;P&gt;No, I don't think so.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can send the source code and the report to&amp;nbsp;pbicvsupport@microsoft.com and I will try to figure out what is wrong with filtration if you wish.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 14:33:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Support-other-visuals-selection-in-custom-slicer/m-p/672234#M19158</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-04-17T14:33:45Z</dc:date>
    </item>
  </channel>
</rss>

