单击Am4charts中标签事件

时间:2019-12-26 10:37:22

标签: amcharts4

是否可以像在am4charts的饼图中的切片中那样为标签添加click事件?我搜索了amcharts文档,却找不到任何内容。所以我想知道是否可以做到?

1 个答案:

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