AdvAnalyticsCatView.getOptions

Syntax

getOptions();

Description

The getOptions method returns tab settings.

Example

To execute this example, the HTML page must contain the ReportBox component named reportBox (see Example of the ReportBox Component Layout). Open the Advanced Analytics tab in the report and enter the following code in the console:

// Get tool ribbon
ribbon = reportBox.getRibbonView();
// Get the Advanced Analytics tab
analyticCat = ribbon.getAnalyticsCategory();
// Get tab settings
analyticCat.getOptions();
// -> Object {obInst: Object, sheets: Object, dataSources: Object, slices: Object, tableSources: Object…}

After executing the example tab settings are obtained.

See also:

AdvAnalyticsCatView