我正在将 JqPlot 与 Javascript 一起使用,并希望为 GraphMouseOver 事件提供一些帮助。我看到有以下内容:
jqplotDataMouseOver
我希望与上面相同,但不是仅针对数据的 MouseOver,而是为整个图表寻找 MouseOver。
是否有我可以查看的 JqPlot 事件列表,或者有人可以帮我知道这个事件的名称吗?
提前致谢。
尝试使用jqplotMouseMove
. 例如,
$('#chart1').bind('jqplotMouseMove',
function (ev, seriesIndex, pointIndex, data) {
alert('here');
}
);
通过jquery.jqplot.js
文件,引发以下事件:
'jqplotClick'
'jqplotDblClick'
'jqplotMouseDown'
'jqplotMouseUp'
'jqplotRightClick'
'jqplotMouseUp'
'jqplotMouseMove'
'jqplotMouseEnter'
'jqplotMouseLeave'