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
Anonymous
Not applicable

Hiding filter pane in Embedded

Hi All,

 

I have a situation where I can see the filter pane in my embedded report whereas I have hid the pane in the Desktop and also can't see it in the Service. But I'm not sure why I'm seeing it on the embedded page.

 

Please refer the below 2 screenshots, Its clearly seen that in service filter pane is not seen but i can see it on the embedded page.

 

Can anyone help here? How to hide it on embedded page.

Embedded View:

 

Himanshu_13_0-1639568456921.png

Service View:

Himanshu_13_1-1639568515146.png

 

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

 If you using Power BI Embed and developing an app,please refer to: https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html

There you can see examples of the variable config and set in false the pane "filters":

var config = {
    type: 'report',
    tokenType: tokenType == '0' ? models.TokenType.Aad : models.TokenType.Embed,
    accessToken: txtAccessToken,
    embedUrl: txtEmbedUrl,
    id: txtEmbedReportId,
    permissions: permissions,
    settings: {
      panes: {
        filters: {
          visible: false
        },
        pageNavigation: {
          visible: true
        }
      }
    }
};

Vlianlmsft_1-1639978707782.png

 

Vlianlmsft_0-1639978665838.png

 

Hope this helps.


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

 If you using Power BI Embed and developing an app,please refer to: https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html

There you can see examples of the variable config and set in false the pane "filters":

var config = {
    type: 'report',
    tokenType: tokenType == '0' ? models.TokenType.Aad : models.TokenType.Embed,
    accessToken: txtAccessToken,
    embedUrl: txtEmbedUrl,
    id: txtEmbedReportId,
    permissions: permissions,
    settings: {
      panes: {
        filters: {
          visible: false
        },
        pageNavigation: {
          visible: true
        }
      }
    }
};

Vlianlmsft_1-1639978707782.png

 

Vlianlmsft_0-1639978665838.png

 

Hope this helps.


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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