Forum Discussion
faerewatson
8 years agoAdvocate I
hide drillthrough from filter pane for embedded reports
the latest rollout of a new feature (Analytics, Measure Drillthrough) has caused an additional section to show up on our embedded Power BI reports (we are using the filter pane). See screenshot with ...
v-yuta-msft
8 years agoCommunity Support
Hi faerewatson ,
Modify config object and set filterPaneEnabled to false like this:
var config= {
type: 'report',
tokenType: tokenType == '0' ? models.TokenType.Aad : models.TokenType.Embed,
accessToken: txtAccessToken,
embedUrl: txtEmbedUrl,
id: txtEmbedReportId,
permissions: permissions,
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: true
}
};
Regards,
Jimmy Tao
faerewatson
8 years agoAdvocate I
thanks v-yuta-msft - but that doesn't solve my problem - we love the filter pane (saves so much space on the canvas to have the filters on the side!) and we would have to revamp all of our reports to accomodate the removal of the filter pane. We just need the DRILLTHROUGH fields/section to be disabled. Is that possible?