Scripting Documentation

The graphomate bubbles integrate seamlessly into the SAP Analytics Cloud. This also supports scripting in the Application Designer of the SAP Analytics Cloud.

Overview of all scripting methods

Examples

You can set custom labels by using the collection of setLabel methods like setCircleLabel.

graphomate_bubbles_1.setCircleLabel("Profit");

Here we check whether a zoom mode is being used and set each bubble element’s minimum radius to 15px if it is not.

if (graphomate_bubbles_1.getZoomMode() === "none") { graphomate_bubbles_1.setMinRadius(15); }