有人可以帮我解决我的问题。 Hover在FlotChart中不起作用。
请检查以下代码吗?
function loadGraph(){
//Display graph
$.plot($("#placeholder"), ds, {
grid:{
hoverable: true,
clickable: true,
borderWidth : 0,
margin : 10
},
xaxes: [ { ticks:ticks, rotateTicks: 0} ],
yaxes: [ { min: 0,
labelWidth : 40,
tickFormatter: function numberWithCommas(x)
{
return x.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");
},
}
],
y2axis: { tickFormatter : charLang, tickLength : 10 },
legend: { show: true, container: "#legendholder" }
});
}
$("#placeholder").bind("plothover", function (event, pos, item) {
if (item) {
alert("hey!");
}
});