ChartCatView.refresh

Syntax

refresh();

Description

The refresh method refreshes data of the Chart tab on the express report tool ribbon.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Then refresh view and data of the Chart tab:

// Get view of the Chart tab
var chartCategory = expressBox.getRibbonView().getChartCategory();
// Refresh tab view
chartCategory.update();
// Refresh tab data
chartCategory.refresh();

After executing the example view and data of the Chart tab are refreshed.

See also:

ChartCatView