jqplot legend事件处理程序单击

时间:2013-03-26 19:51:44

标签: jqplot

嗨我正在尝试将事件处理程序插入到jqplot图例的每一行

之类的东西

$('#chart3')。bind('jqplotDataClick',function(ev,seriesIndex,pointIndex,data){                 警报(1);});); 但对于传奇线

1 个答案:

答案 0 :(得分:3)

这对我有用:

$('#chart-id tr.jqplot-table-legend').bind('click', function() {
    alert($(this).children().last().text());
});

所以这将是alert系列的名称。