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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
lucmax
Helper II
Helper II

Apply JSON Filter to own custom visual

Hey,

 

I'm trying to build a new version of our custom visual because I saw other custom visuals (apparently) applying json filters to themself. How can I achive this behaviour and apply a json filter (advanced filter api) to the visual itself which created the filter?

 

regards,

lucmax

1 ACCEPTED SOLUTION
lucmax
Helper II
Helper II

With help of a fellow forum member I got it to work the way I want. You need to do the following to have your visual filter itself AND others visuals:

 

capabilities.json (general)

 

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

 

ApplyJsonFilter call(s)

    this._visualHost.applyJsonFilter(
      filterList,
      "general",
      "selfFilter",
      powerbi.FilterAction.merge
    );
    this._visualHost.applyJsonFilter(
      filterList,
      "general",
      "filter",
      powerbi.FilterAction.merge
    );

 

Hope this helps someone else!

View solution in original post

3 REPLIES 3
lucmax
Helper II
Helper II

With help of a fellow forum member I got it to work the way I want. You need to do the following to have your visual filter itself AND others visuals:

 

capabilities.json (general)

 

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

 

ApplyJsonFilter call(s)

    this._visualHost.applyJsonFilter(
      filterList,
      "general",
      "selfFilter",
      powerbi.FilterAction.merge
    );
    this._visualHost.applyJsonFilter(
      filterList,
      "general",
      "filter",
      powerbi.FilterAction.merge
    );

 

Hope this helps someone else!

Hi, I'm also looking for a way to filter my cutom visual and not just the other visuals.

This query seems to be the closest I can find to what I'm lookng for.

I have the capabilities setup as mentioned, but not sure how and where the applyJSONFilter call is implemented.

Can someone assist me with the steps in order to implement this or direct me to an example as to how this is done?

Hi @Charlene,

we are calling the applyJsonFilter in our visual.ts code when the user clicks our filter button. The filter list contains the filters we want to apply in a format like this:

 

{
  $schema: "http://powerbi.com/product/schema#basic",
  ...new BasicFilter(
    {
      table: tableName
      column: columnName,
    },
    "In",
    values
  ),
}

Maybe this helps.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors