Skip to content
Michael Blythe edited this page Aug 30, 2016 · 3 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 = {
  navContentPaneEnabled: true,
  filterPaneEnabled: false
};

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