Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

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

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);
}

Overview of all methods

Link: https://public.graphomate.com/bubbles/sac-scripting-doc/interfaces/scriptingapi.html

  • No labels