有谁知道 jQuery Flot “模式:时间”是如何实现的?作品?

发布于 2024-12-12 04:01:06 字数 296 浏览 0 评论 0原文

有人知道 jQuery Flot 模式:时间是如何工作的吗?

yaxis: {
    mode: "time",
    timeformat: "%H:%M"

},

jQuery Api 在文档中很容易实现: http://flot.googlecode.com/svn/trunk/API.txt

您应该如何将数据提供给图表?几秒钟内?

Do somebody know how the jQuery Flot mode: time works?

yaxis: {
    mode: "time",
    timeformat: "%H:%M"

},

The jQuery Api ship it easy in the docs:
http://flot.googlecode.com/svn/trunk/API.txt

How should you give the data to the graph? In seconds?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自找没趣 2024-12-19 04:01:06

API 中指出:

Flot 中的时间序列支持基于 Javascript 时间戳,
即在任何需要或移交时间值的地方,Javascript
使用时间戳编号。这是一个数字,而不是 Date 对象。一个
JavaScript 时间戳是自 1 月 1 日以来的毫秒数,
1970 00:00:00 UTC。 这几乎与 Unix 时间戳相同,除了
它以毫秒为单位,因此请记住乘以 1000!

这是一个非常好的示例

In the API it states:

The time series support in Flot is based on Javascript timestamps,
i.e. everywhere a time value is expected or handed over, a Javascript
timestamp number is used. This is a number, not a Date object. A
Javascript timestamp is the number of milliseconds since January 1,
1970 00:00:00 UTC.
This is almost the same as Unix timestamps, except
it's in milliseconds, so remember to multiply by 1000!

Here is a pretty good example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文