jquery flot xaxis时间

前端之家收集整理的这篇文章主要介绍了jquery flot xaxis时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这个例子中,xaxis会比较天…
$.plot($("#placeholder"),data,{
                yaxis: {},xaxis: { mode: "time",minTickSize: [1,"day"],timeformat: "%d/%m/%y"},"lines": {"show": "true"},"points": {"show": "true"},clickable:true,hoverable: true
            });

怎么打印时间?

这是我想要的结果:

22:00 23:00 00:00 01:00 02:00 …… 23:00 00:00 01:00 02:00 …. 06:00

可能吗?

解决方法

$.plot($("#placeholder"),{
        yaxis: {
        },"hour"],min: (new Date("2000/01/01")).getTime(),max: (new Date("2000/01/02")).getTime()
},hoverable: true
});

以此为起点,您可以看到这里的结果http://jsfiddle.net/UEePE/

原文链接:https://www.f2er.com/jquery/182135.html

猜你在找的jQuery相关文章