Flot Time Axis Range

时间:2013-03-28 01:07:57

标签: jquery flot timestamp

如何在flot图中设置选项,以便仅显示当天的数据?我有时间戳和格式化工作,但我不知道如何只显示当天(所以轴不断更新到当天)。

编辑:

以下是我目前正在使用的代码片段:

// mode specific options
                    tickDecimals: null, // no. of decimals, null means auto
                    tickSize: null, // number or [number, "unit"]
                    minTickSize: [1, "hour"], // number or [number, "unit"]
                    monthNames: null, // list of names of months
                    timeformat: "%H:%I",
                    twelveHourClock: "12" // 12 or 24 time in time mode

1 个答案:

答案 0 :(得分:1)

在调用plot()之前尝试设置xaxis min / max选项。 Time1是一天的第一个00:00:00小时的毫秒,而Time2是一天的23:00:00小时。

data: [.....],
...    
xaxis{ min: Time1, max: Time2}