We have updated WebDataRocks EULA, effective as of April 18, 2024. Learn more about what's changed.
Documentation menu

getOptions

getOptions():Options Object

This API call returns Options Object defined in the pivot table component.

Example

Hide the Field List button from the grid:

var options = webdatarocks.getOptions();
options.configuratorButton = false;
webdatarocks.setOptions(options);
webdatarocks.refresh();

Try it on CodePen.

See also