gpt4 book ai didi

javascript - Flot 未正确显示时间戳/日期

转载 作者:行者123 更新时间:2023-12-02 18:49:24 25 4
gpt4 key购买 nike

绘图图未正确显示日期/小时。 x 轴上有 unix 时间戳的值。

数据:

 [[1365712202000,61.39],[1365712510000,60.89],[1365712817000,0]]

float 配置:

    $.plot(plotarea , [
{
label: "Value",
data: dataLine,
color: "#FF8848",
lines: { show: true, steps: false },
points: { show: true },
grid: { hoverable: true, clickable: true },
xaxis: { mode: "time", timeformat: "%d/%H/%M" }
}
]

enter image description here

最佳答案

您的配置错误。 xaxisgrid 不是系列选项,而是绘图选项。尝试:

$.plot($('#placeholder') ,[{
label: "Value",
data: dataLine,
color: "#FF8848",
lines: { show: true, steps: false },
points: { show: true }
}],
{
grid: { hoverable: true, clickable: true },
xaxis: { mode: "time", timeformat: "%d/%H/%M" }
}
);

fiddle here .

关于javascript - Flot 未正确显示时间戳/日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15980790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com