我有一个只有 1 点的图形。Y轴是日期轴。它工作正常,但是当图形只有一个点时,Y 轴不会在 Y 轴上显示日期值。
有没有办法强制显示 Y 轴?(已经尝试过使用 yaxis: { show: true })
代码示例:http: //jsfiddle.net/pFB8s/
var options = {
xaxis: {
show: true,
mode: 'time',
minTickSize: [1, 'day'],
timeformat: '%d %b %y'
},
yaxis: {
minTickSize: 0.5
},
series: {
lines: { show: true },
points: { show: true }
}
};
$.plot($('#chartDiv'), [[[1372339686000, 78.000]]], options);