Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以这就是问题所在.. 我使用图像来表示图表中的数据标签,我需要将“useHTML”标志设置为 true 才能做到这一点..
但是如果我将标志设置为true,它不允许我将点击事件绑定到数据标签..有没有办法解决这个问题..
这是小提琴
您可以这样设置onClick处理程序:
onClick
$(chartObj.series[0].data[6].dataLabel.div.lastChild).bind('click', function(e) { alert('clicked!') })
jsFiddle在这里。