我有一个问题,我似乎无法追查。 我使用的海军报绘制图形的一些数据,超方便。 我想添加你在这里看到的悬停效果: 海军报实例
不幸的是,在任何情况下我能得到“plothover”事件火灾。 这是从代码的简短片段:
$.plot($chartArea, eventData, eventOptions);
$chartArea.bind("plothover", function (event, pos, item) {
console.log('hovering!');
});
你有什么需要设置的选项反对启用此行为的东西吗? 谢谢!
像一个白痴,我忘了,包括网格选项。 退房的对象:
eventOptions = {
points: {
show: true
},
lines: {
show: true
},
grid: { hoverable: true, clickable: true },
xaxis: {
min:earliestMessage.timestamp,
max:currentTime,
mode:"time",
ticks:10
}
};
注意电网参数。 这是少了什么。 咄!
:)
我不知道什么$ chartArea是在你的代码,但让我们试试这样:
var chartArea = $("#placeholder"); // your chart div
$.plot(chartArea, eventData, eventOptions);
$(chartArea).bind("plothover", function (event, pos, item) {
console.log('hovering!');
});