我有以下問題,如下圖所示,其中水平滴答滴答似乎是隨機的,不要嘗試排列數據。我的數據和代碼也在下面。任何幫助與此讚賞。Flot - x軸的滴答滴答與實際數據不一致
圖片位於http://imgur.com/VVrvi(抱歉,不能附加圖片還)
代碼:
$.plot(placeholder,
data,
{
yaxes: [ { tickFormatter: centFormatter, max: 101, min: -0.1, tickSize: 20 }, { position: "right", min: -0, } ],
xaxes: [ { mode: "time", minTickSize: [1, "day"], } ],
series: {
lines: { show: true },
points: { show: true }
},
grid: { hoverable: true, clickable: true },
});
數據爲藍線:
[2012-08-19] => 3612220
[2012-08-26] => 3570080
[2012-09-02] => 3576040
[2012-09-09] => 3597380
[2012-09-16] => 3593040
[2012-09-23] => 3579480
[2012-09-30] => 3638840
[2012-10-21] => 13
我嘗試了各種方案供蜱,minTickSize等..沒有運氣。
感謝您的回答,現在,這似乎是顯而易見的。這也讓我意識到爲什麼其他一些事情表現奇怪。 – superphonic