Initializing help system before first use

Multi-scenario

By default AutoTable data for columns and indices will be loaded from the first scenario on the shelf.

You can override this table-wide and per array column. If you use arrays from more than one scenario the indices will be loaded and combined from each of the scenarios referenced. If there are any associated label arrays for the index sets then they will be resolved from each scenario used in the table, in the order they appear on the shelf.

Here is an example of a multi-scenario table:
insight.getView()
    .withScenarios(1, 2)
    .bindAutoTable({
        tableId: 'multi-scenario-table',
        scenario: 1  // Default scenario for the table
        columnOptions: [
            {name: 'ArrayEntity’}, // Uses the default table scenario
            {name: 'ArrayEntity', scenario: 2},
            {name: 'AnotherArray', scenario: 2}
        ]
    })
    .start();

The index columns that are generated will contain the corresponding index set values from the 2nd and 3rd scenarios on the shelf.