在高图表中如何为标签点击添加事件 [英] In high chart how to add event for label click

查看:91
本文介绍了在高图表中如何为标签点击添加事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在高图中有一个点击栏的事件。但酒吧的身高很小,不可能点击它。因此,我希望事件高位进行进一步处理。



例如,在下面的例子中我想要月份名称的事件。


In high chart there is an event for clicking on the bar. But bar is small in height it is impossible to click on it. Hence I want the event in high chart for further processing.

E.g. I want the event for month name in following example.

Thanks In advance.

解决方案

If you don't want to use JQuery you can use it as follows

chart.xAxis[0].labelGroup.element.childNodes.forEach(function(label)
{
    label.style.cursor = "pointer";
    label.onclick = function(){
      alert('You clicked on '+this.textContent);
    }
});

complete code at http://jsfiddle.net/t07ok5v3/5/

这篇关于在高图表中如何为标签点击添加事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆