plotzoom在jqplot中取消绑定datahighlight

时间:2013-11-06 16:10:35

标签: javascript jquery javascript-events jqplot

我有一个jqplot图表,通过将鼠标悬停在其上与其他元素相结合。 现在我想添加plotzooming,但在使用缩放功能后,datahover不再起作用了。我不知道如何修复或测试它。

我这里有一个jsFiddle: http://jsfiddle.net/DWFTb/244/ 使用缩放后,没有更多日志,因此绑定事件不再起作用。

我使用bar示例来实现它:

function showPoint(ev, seriesI, pointI, data){
   console.log(ev);
}
function hidePoint(ev){
    console.log('hide');
}

我尝试将事件“bind”更改为jquery函数'on'。没有帮助。 我也尝试使用$ .jqplot.eventListenerHooks.push('jqplotDataMouseOver',function(){...});

0 个答案:

没有答案