我正在尝试使节点可单击,但是我只希望孩子可单击,而不希望父节点可点击,但是我不知道该怎么做。 我正在使用amcharts。 有什么方法只能将 Hit 事件用于子节点吗?
networkSeries.nodes.template.events.on("hit", function (event) {
location.href="https://www.google.com/";
});
答案 0 :(得分:0)
古老的问题,可是:
networkSeries.nodes.template.events.on("hit", function (event) {
if (event.target.dataItem.level === 1)
location.href="https://www.google.com/";
}
});