Hi,
I am developing an application that uses the SAPUI5 Analytic Map with Pies as visual objects. For some reason, the click event of the Pie Item is not fired. Below is a snippet of my code.
<vbm:Pie position="130;-20;0" scale="3;0;0" click="onPieClick"> <vbm:items> <vbm:PieItem name="A" value="3" click="onPieItemClick" /> <vbm:PieItem name="B" value="7" click="onPieItemClick" /> </vbm:items> </vbm:Pie>
The click event of the Pie is fired but not the item. I need to get the instance of the selected/clicked pie item.
Cheers