gpt4 book ai didi

javascript - jQuery Flot xaxis 元素数

转载 作者:行者123 更新时间:2023-11-30 17:26:11 27 4
gpt4 key购买 nike

我正在尝试使用 jquery Flot 生成图形。这是我使用的脚本:

var plot = $.plot("#placeholder", [
{ data: data2, label: observation_obj.concept_name}
], {
series: {
lines: {
show: true
},
points: {
show: true
}
},
grid: {
hoverable: true,
clickable: true
},
yaxis: {
},
xaxis: {
mode: "time",
timeformat: "%d.%m"
}
});

我得到的结果是这样的:

http://i62.tinypic.com/25uk51z.png

我的数据包含两个点,我不知道为什么在 x 轴上我看到 4 个点,

有人能帮忙吗?

谢谢

最佳答案

x 轴上的刻度是自动生成的,因此它们在轴上均匀分布。如果你想改变,你可以给 flot 一个数组(在你的情况下)与你的数据中的时间戳相匹配的时间戳(这里只有例子):

xaxis: {
mode: "time",
timeformat: "%d.%m",
ticks: [1383582043000, 1383682043000]
}

参见 documentation获取更多信息/示例。

关于javascript - jQuery Flot xaxis 元素数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24213579/

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