EaxAnalyzer.IsHasDataAvailable

Syntax

IsHasDataAvailable: Boolean

Description

The IsHasDataAvailable property determines whether on data change in dimensions the requests are sent to refresh the state of the @hasData field in dimension item metadata.

Comments

If the property is set to True, changing data in dimensions sends queries for updating state of the@hasData field in dimension element metadata. The False value is set by default.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Set the IsHasDataAvailable property to True:

eaxAnalyzer =  expressBox.getSource().getActiveSheet();
eaxAnalyzer.setIsHasDataAvailable(True);
//Refresh express report properties panel
expressBox.getPropertyBarView().refresh();

After executing the example the IsHasDataAvailable property is set to True, the properties panel will be refreshed: dimension elements containing data are highlighted on the Selection tab.

See also:

EaxAnalyzer