2
votes

Working with an amchart bubble in iccube reporting, If I leave the default balloon behavior, I get enter image description here

Which is almost what I want... I just want to replace x, y and value by their parameterized axis names... I then tried to put <b>[[title]]</b></br>Evo @{AnneeRefSelected} - @{AnneeFinSelected} : [[x]]</br>PDM Séjours @{AnneeFinSelected} : [[y]]</br> <b>Séjours @{AnneeFinSelected} : [[value]]</b> in widget's Graph.Balloon Text property instead... but then :

  1. the formatting of numbers has gone
  2. I loose the series name

enter image description here

Any help appreciated, Thxs.

1

1 Answers

2
votes

Currently you can use fValue to get a formatted version of the value column, the third in this case. Unfortunatly, there is no version for x and y (fX, fY). We will add this to future versions.

On the meantime as all value columns have a formatted version we can use this. Assuming that you have the following column labels: column0, column1, column2, column3, you have to add the following as balloon text:

<b>[[column0]]</b></br>Evo @{AnneeRefSelected} - @{AnneeFinSelected} : [[column1Formatted]]</br>PDM Séjours @{AnneeFinSelected} : [[column2Formatted]]</br> <b>Séjours @{AnneeFinSelected} : [[column3Formatted]]</b>

Here it is an example, the pivot table on the right side contains the underlying data of the Bubble chart: enter image description here