Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Apply JSON Filter not working

So I have been following the steps that were outlined here https://microsoft.github.io/PowerBI-visuals/docs/concepts/filter-api/#basic-filter-api

 

I created a basic filter: 

 

 

let target: IFilterColumnTarget = {
            table: "DataTable",
            column: "Category1"
        };
let values = [ 123 ];
let filter: BasicFilter = new BasicFilter(target"NotIn"
this.visualHost.applyJsonFilter(filter"general""filter"FilterAction.merge);
 
 
in my capabilities, I have added as specified:
 
 
"general": {
            "displayName""General",
            "displayNameKey""formattingGeneral",
            "properties": {
                "filter": {
                    "type": {
                        "filter"true
                    }
                }
            }
        }   
 
 
I know that my json filter is being applied. But for some reason the dataview that I receive doesn't change at all. Can anyone help?
 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Yep, I've realised now thanks. 

 

It turns out the answer was simply to use

 

visualhost.applyJsonFilter(advancedFilter, "general", "selfFilter", FilterAction.merge);

 

instead of 

 

visualhost.applyJsonFilter(advancedFilter, "general", "Filter", FilterAction.merge);

 

This will filter the visual and not all the other visuals. 

View solution in original post

7 REPLIES 7
jppp
Continued Contributor
Continued Contributor

Hi @Anonymous ,

 

this.visualHost.applyJsonFilter() pushes the filter back to Power BI so that all other visuals on the page are filtered by the content of the filter. It doesn't filter the data that the visual is getting; slicer are using the same technique.

 

-JP

Anonymous
Not applicable

Yep, I've realised now thanks. 

 

It turns out the answer was simply to use

 

visualhost.applyJsonFilter(advancedFilter, "general", "selfFilter", FilterAction.merge);

 

instead of 

 

visualhost.applyJsonFilter(advancedFilter, "general", "Filter", FilterAction.merge);

 

This will filter the visual and not all the other visuals. 

Hey @Anonymous ,

 

I'm trying to achieve exactly the behaviour and have my custom visual filter itself. I can't get your solution to work, did you do any other changes regarding for example the capabilities?

 

regards,

lucmax

Anonymous
Not applicable

Hey lucmax,

 

So you need to add selfFilter to your general capabilities too. Like this. So instead of filter, replace with selfFilter.  There is no documentation for this, so it was a lot of trial and error. 

 

"selfFilter": {
               "type": {
                  "filter": {
                     "selfFilter"true
                  }
               }
            }

Thank you @Anonymous! That helped a lot. I tried changing them, but didn't do it with the double "selfFilter" key.

Anonymous
Not applicable

Hello.

 

Can you please share your current repository project?

 

Right now I'm facing an issue with FilterAction.merge

host.applyJsonFilter(models.AdvancedFilter, "general", "selfFilter", FilterAction.merge);
 
Cannot find name 'FilterAction'.
 
Thank You.

@Anonymous wrote:

Yep, I've realised now thanks. 

 

It turns out the answer was simply to use

 

visualhost.applyJsonFilter(advancedFilter, "general", "selfFilter", FilterAction.merge);

 

instead of 

 

visualhost.applyJsonFilter(advancedFilter, "general", "Filter", FilterAction.merge);

 

This will filter the visual and not all the other visuals. 



@Anonymous wrote:

Yep, I've realised now thanks. 

 

It turns out the answer was simply to use

 

visualhost.applyJsonFilter(advancedFilter, "general", "selfFilter", FilterAction.merge);

 

instead of 

 

visualhost.applyJsonFilter(advancedFilter, "general", "Filter", FilterAction.merge);

 

This will filter the visual and not all the other visuals. 




Anonymous
Not applicable

You need to add this to the top to import FilterAction

 

import FilterAction = powerbi.FilterAction;
 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors