Hi Syncfusion team,
i got a pie chart on my app, and i added a mouseclick event.
I get correctly wich part is clicked in form of: pieChart_Series_0_Point_0, pieChart_Series_0_Point_1 etc.
How can i get info like label name of the clicked area?
pieChart = new ej.charts.AccumulationChart({
series:[{
dataSource : pieChartData,
radius: '100%',
xName: 'tipo',
yName: 'valor'
}],
chartMouseClick:function(args)
{
console.log("mousclick");
console.log(args.target);
},
tooltip:{enable:true}
});
pieChart.appendTo("#pieChart");