float xaxes 时间模式不正确
我正在使用 jquery flot 来显示图表。一切工作正常,但垂直线错误。
2 月 16 日垂直线应移动到左侧尺寸。
我用数字进行了测试,它运行完美。它只在 x aixs 中出现问题。
var plot = $.plot($("#placeholder"),
[ { data: data1, label: "data1"} , {data:users, label:"users"}], {
series: {
lines: { show: true },
points: { show: true }
},
xaxes: [ {mode: "time"} ],
grid: { hoverable: true, clickable: false },
legend: {container: $("#labeler")}
});
I am using jquery flot for showing graph. Everything is working fine but vertical line are wrong.
Feb 16 vertical line should be move to the left size.
I tested with number and it's working perfect. It only problem in x aixs.
var plot = $.plot($("#placeholder"),
[ { data: data1, label: "data1"} , {data:users, label:"users"}], {
series: {
lines: { show: true },
points: { show: true }
},
xaxes: [ {mode: "time"} ],
grid: { hoverable: true, clickable: false },
legend: {container: $("#labeler")}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现一个问题。
PHP 日期字符串转时间戳 * 1000 是一种错误的方法。
正确的一个是
Found a problem.
PHP date string to timestamp * 1000 is a wrong way.
Correct one is