EaxAnalyzer.getIndValue

Syntax

getIndValue(indName: String, viewType: PP.Exp.Ui.EaxObjectType);

Parameters

indName. Indicator name.

viewType. Data view type.

Description

The getIndValue method returns value of indicator for express report map or bubble chart.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get height indicator value for the express report map:

var eaxAnalyzer = expressBox.getSource();
// Gets indicator value from the map
var depthValue = eaxAnalyzer.getIndValue("Depth", PP.Exp.Ui.EaxObjectType.Map)
console.log("Depth value: " + depthValue);

After executing the example the browser console displays value of height indicator for the express report map:

Height value: 3941

See also:

EaxAnalyzer