如何使用Jqplot在水平条形图中为y轴刻度(标签)启用单击事件

时间:2013-04-23 10:44:31

标签: jqplot

我正在尝试使用jqplot实现水平条形图。我想为y轴标签启用click事件。

但是我用jquery使用类名来尝试访问“y轴刻度”。

  $('.jqplot-yaxis-tick').click(function ()
    {
       alert("you have clicked the label");

    });

是否有任何事件可以像jqplot中的“​​jqplotDataClick”事件那样做?

1 个答案:

答案 0 :(得分:0)

此问题已解决 From Here

只需更新.jqplot-yaxis-tick的z-index,这样它就是第一个被点击并添加的div .live(或.on)

$('.jqplot-yaxis-tick').css({
            cursor: "pointer",
            zIndex: "200"
    }).live('click', function (e) {
        alert("you have clicked the label");
    });