2
我得到了Flot創建的圖。我想要做的是在用戶將鼠標移動到其上時獲取某種信息 - 最好是在某種JavaScript彈出窗口中顯示數據(從x和y軸)。如何在Flot圖中顯示帶有數據點數據的彈出窗口?
這也可能是微不足道的問題,但我不出來...
現在我的JavaScript看起來像這樣:
<script id="source" language="javascript" type="text/javascript">
$(function() {
var data = [[1251756000000, 122.68],[1251842400000, 122.68],[1251928800000, 125.13],[1252015200000, 112.62],[1252101600000, 122.76]]
$.plot($("#graph_placeholder"), [ data ], {
xaxis: { mode: "time", minTickSize: [1, "day"], timeformat : "%y/%m/%d", },
lines: { show: true },
points: { show: false },
});
});
</script>
所以最好將獲得x: 1251756000000 y: 122.68
徘徊時,點(x:1251756000000,y:任何)。或者甚至有x
的值按照timeformat
(2009/11/14)中的定義格式化。