Skip to content

Update Settings

Amit Shuster edited this page Jan 24, 2021 · 4 revisions
ℹ️ This wiki has been deprecated
All our Client APIs documentation and references can be found in the new Power BI embedded analytics Client APIs documentation set.
For the content of this article see updateSettings(ISettings).

As you may have read from the Embed Configuration Details page, there are report-specific settings such as filterPaneEnabled and navContentPaneEnabled that can be set at load time. They can also be changed dynamically, as in the following example:

const newSettings = {
  panes: {
    filters :{
      visible: false
    },
    pageNavigation:{
      visible: true
    }
  }
};

report.updateSettings(newSettings)
  .catch(error => { ... });

Clone this wiki locally