我正在尝试将 jquery flot 的 y 轴配置为以月:天:小时:分钟:秒格式显示时间间隔。这是我的情节选项
options = {
xaxis: {
mode: "time"
},
series: {
lines: {show: true, lineWidth: 2},
hadowSize: 0
},
yaxis: {
mode: "time",
timeformat: "%m:%d:%H:%M:%S"
},
points: {show: true},
legend: {show: true, position: 'nw'}
}
}
我有一个以毫秒为单位的时间戳点数据集。x 轴上的日期没问题,但 y 轴上的日期有问题。我该如何解决?