問題は、チャートの開始の 2 日前に常に表示されることです。私は設定しようとしましたがpad: 0
、min: 0
これは通常の値で機能していますが、日付値ではあまり機能していません。
例:
私の配列は から始まります2012.09.01
が、グラフは から始まり2012.8.30
ます。
問題を説明する画像
コード
var plot1 = $.jqplot('chart-dashboard', [line1, line2, line3], {
series: [{ color: '#333333', label: '1' }, { color: '#999999', label: '2' }, { color: 'green', label: '3'}],
axes: {
xaxis: {
renderer: $.jqplot.DateAxisRenderer,
tickOptions: {
formatString: '%b %#d'
},
// pad: 0 // does not work
// min: 0 // does not work
},
yaxis: {
min: 0 // works because it's not a date
}
},
highlighter: {
show: true,
sizeAdjust: 7.5
},
cursor: {
show: false
},
legend: {
show: true
}
});