EaxAnalyzer.getBubbleChartId

Syntax

getBubbleChartId();

Description

The getBubbleChartId method returns identifier of the Bubble Chart view of express report data.

Comments

The method returns a JSON object that has the id field - string identifier for the express report bubble chart that looks as follows: {session_ID}!{object_ID}.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get a string identifier {session_ID}!{object_ID} for express report table, chart, bubble chart, and map (if it is available):

var eaxAnalyzer = expressBox.getSource();
console.log("Bubble chart: " + eaxAnalyzer.getBubbleChartId().id);
console.log("Chart: " + eaxAnalyzer.getChartId().id);
console.log("Chart: " + eaxAnalyzer.getChartId().id);
if (eaxAnalyzer.isMapAvailable) {
    console.log("Map: " + eaxAnalyzer.getMapId().id);
}
console.log("Tab: " + eaxAnalyzer.getTabId().id);

After executing the example the browser console displays string identifiers of the express report table, chart, and bubble chart:

Bubble chart: ACEGIKMKEJOBEOAEIALFIBABEBJIOPOEOLEPEGGOPMAMMEPP!M!S!ELABMBCNKEJOBEOAEGGDPPMMMLJJFOBMEOJHFCNPOMHLPPPCH!bubbleChart
Chart:
ACEGIKMKEJOBEOAEIALFIBABEBJIOPOEOLEPEGGOPMAMMEPP!M!S!ELABMBCNKEJOBEOAEGGDPPMMMLJJFOBMEOJHFCNPOMHLPPPCH!Chart
Chart: ACEGIKMKEJOBEOAEIALFIBABEBJIOPOEOLEPEGGOPMAMMEPP!M!S!ELABMBCNKEJOBEOAEGGDPPMMMLJJFOBMEOJHFCNPOMHLPPPCH!Chart
Map: ACEGIKMKEJOBEOAEIALFIBABEBJIOPOEOLEPEGGOPMAMMEPP!M!S!ELABMBCNKEJOBEOAEGGDPPMMMLJJFOBMEOJHFCNPOMHLPPPCH!Map
Tab: ACEGIKMKEJOBEOAEIALFIBABEBJIOPOEOLEPEGGOPMAMMEPP!M!S!ELABMBCNKEJOBEOAEGGDPPMMMLJJFOBMEOJHFCNPOMHLPPPCH!Tab

See also:

EaxAnalyzer