EaxAnalyzer.clearDims

Syntax

clearDims();

Description

The clearDims method removes all dimensions from an express report.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get the number of express report dimensions before and after the removal:

var eaxAnalyzer = expressBox.getSource(); 
console.log("Dims count: " + eaxAnalyzer.getDims().length);
// Remove all dimensions of the express report
eaxAnalyzer.clearDims();
console.log("Dims count after clearing: " + eaxAnalyzer.getDims().length);

After executing the example all four dimensions of the express report are removed:

Dims count: 4
Dims count after clearing: 0

See also:

EaxAnalyzer