我使用Jqplot,它顯示了我一個雙日期..我不知道爲什麼,也許你能幫助我。)Jqplot顯示雙日
這是我的代碼:
$(document).ready(function(){
var line1=[['17-Oct-13', 0.00], ['18-Oct-13', 0.00], ['19-Oct-13', 0.00], ['20-Oct-13', 0.00], ['21-Oct-13', 0.00], ['22-Oct-13', 0.00], ['23-Oct-13', 0.00], ['24-Oct-13', 0.00], ['25-Oct-13', 1], ['26-Oct-13', 0.00], ['27-Oct-13', 0.00], ['28-Oct-13', 0.00]];
var plot1 = $.jqplot('chartdiv', [line1], {
title:'',
axes:{
xaxis:{
renderer:$.jqplot.DateAxisRenderer,
tickOptions:{
formatString:'%b %#d'
}
},
yaxis:{
tickOptions:{
formatString:'€%.2f'
}
}
},
highlighter: {
show: true,
sizeAdjust: 7.5
},
cursor: {
show: false
}
});
});
輸出如下如: http://s14.directupload.net/images/131028/qc5vnmii.jpg
你可以看到有一個雙重日期(Okt-26)。我該如何解決?
對不起,我沒有一個答案。我真的瘋了,同樣的問題。 http://jsfiddle.net/GFtAr/3/但在我的情況下,第27重複。 – Pod