Skip to content
Matt Mazzola edited this page Aug 8, 2016 · 3 revisions

As you may have read from the Embed Configuration Details page, there are report specific setting such as filterPaneEnabled or navContentPaneEnabled which can be set at load time.

They can also be changed dynamically.

Example:

const newSettings = {
  navContentPaneEnabled: true,
  filterPaneEnabled: false
};

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

Clone this wiki locally