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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
nagaraj
Post Patron
Post Patron

embed report :: hide filter

Hi, 

 We are embedding the report in dotnet application through Javascript, able to embed the report successfully.

 But we are not able to hid 

 

 FilterPane

 NavigationPane

 

Can you please help, below is the java script code block used.

 

var config = {
type: 'report',
tokenType: models.TokenType.Embed,
accessToken: accessToken,
embedUrl: embedUrl,
id: embedReportId,
permissions: models.Permissions.All,
viewMode: DMode,
//settings: {
// navContentPaneEnabled: false
//}


//// Embed the report and display it within the div container.

settings:
{
panes:
{
filters: { expanded: false,visible: false },
pageNavigation: { visible: false }
}
}


};

5 REPLIES 5
v-xuding-msft
Community Support
Community Support

Hi @nagaraj ,

 

Please try this:

settings: {
                      filterPaneEnabled: false,
                      navContentPaneEnabled: false
                    } 
          }; 

 Reference: 

https://community.powerbi.com/t5/Developer/How-to-Hide-Power-BI-iFrame-Embedded-Report-Tabs/m-p/1223...

 

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

Hi @nagaraj ,

 

Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from the thread.

 

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

Hi @amitchandak 

 

 As mentioned in the third URL, i have used the same code block in Java Script.

But not able to hide FILTER PANE and NAVIGATION PANE.

 

As per some other suggestions, tried appending &navContentPaneEnabled = false directly appending to the URL, but no luck remains same.

 

Regards

Nagaraj

remove spaces. It worked for me:

&navContentPaneEnabled=false

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors