float xaxes 时间模式不正确

发布于 2025-01-06 20:20:00 字数 624 浏览 1 评论 0原文

我正在使用 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.

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹梦 2025-01-13 20:20:00

发现一个问题。

$date = new DateTime($user->date);
 users.push([(<?php echo $date->getTimestamp();  ?>*1000),<?php echo $user->count ?>]);

PHP 日期字符串转时间戳 * 1000 是一种错误的方法。

正确的一个是

var date = new Date("<?php echo $user->date ?>");
users.push([date.getTime(),<?php echo $user->count ?>]);

Found a problem.

$date = new DateTime($user->date);
 users.push([(<?php echo $date->getTimestamp();  ?>*1000),<?php echo $user->count ?>]);

PHP date string to timestamp * 1000 is a wrong way.

Correct one is

var date = new Date("<?php echo $user->date ?>");
users.push([date.getTime(),<?php echo $user->count ?>]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文