是否可以像在am4charts的饼图中的切片中那样为标签添加click事件?我搜索了amcharts文档,却找不到任何内容。所以我想知道是否可以做到?
答案 0 :(得分:0)
是的,可以-在标签的hit
事件上附加事件。假设您需要在饼图切片标签上添加
series.labels.template.events.on('hit', function(ev) {
alert('clicked on ' + ev.target.dataItem.category + ' with a value of ' + ev.target.dataItem.value);
});