gpt4 book ai didi

flot - 如何使用 flot 渲染此条形图

转载 作者:行者123 更新时间:2023-12-03 22:23:17 25 4
gpt4 key购买 nike

你能用 flot 渲染这样的条形图吗?

Example chart

我是否需要手动创建数据集才能获得此结果,而不是使用 mode: 'time' ?

最佳答案

其实pretty easy使用浮点生产。

var options = {
series: {
bars: {
show: true,
barWidth: 15778463000, // 1/2 year in milliseconds
align: 'center'
},
},
yaxes: {
min: 0
},
xaxis: {
mode: 'time',
timeformat: "%y",
tickSize: [1, "year"],
autoscaleMargin: .10 // allow space left and right
}
};

$(function() {
$.plot($('#placeholder'), [[[1230768000*1000, 100], //[seconds * 1000 = milli, y value]
[1262304000*1000, 200],
[1293840000*1000, 300]]], options);
});

产生:

enter image description here

关于flot - 如何使用 flot 渲染此条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8079519/

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