Skip to content

Update Settings

submarine-launched edited this page May 18, 2020 · 4 revisions

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