问题是它总是在我的图表开始前两天显示。我尝试设置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
}
});