我该如何在amcharts力导向图中为孩子设置击打事件?

时间:2019-06-17 11:13:03

标签: javascript nodes amcharts amcharts4

我正在尝试使节点可单击,但是我只希望孩子可单击,而不希望父节点可点击,但是我不知道该怎么做。 我正在使用amcharts。 有什么方法只能将 Hit 事件用于子节点吗?

networkSeries.nodes.template.events.on("hit", function (event) {

 location.href="https://www.google.com/";
});

1 个答案:

答案 0 :(得分:0)

古老的问题,可是:

networkSeries.nodes.template.events.on("hit", function (event) {
  if (event.target.dataItem.level === 1)
    location.href="https://www.google.com/";
  }
});