在研究资源图表的 AnyChart 文档时,似乎您应该能够为Activities
添加事件监听器,但我一直在无法使其发挥作用。
AnyChart资源图表演示 http://playground.anychart.com/api/7.12.0/core/resource/anychart.core.resource.Activities.labels_get-plain
AnyChart文档(特定于资源图表活动) https://api.anychart.com/7.12.0/anychart.core.resource.Activities#listen
向图表本身添加侦听器事件按预期工作,但不提供特定于用户单击的单个活动的任何数据。
我需要将侦听器事件添加到Activities
对象,以便当用户选择/单击图表中的特定活动时,侦听器事件将触发并返回特定于该活动的数据。
anychart.onDocumentReady(function () {
var data = getData();
chart = anychart.resource();
chart.data(data);
var currentActivities = chart.activities();
// this listener event never fires for the activities object
currentActivities.listen('click', function(e) {
// expecting to get an event object specific to the activity clicked by user here
});
chart.container("container");
chart.draw();
});