gpt4 book ai didi

javascript - 使用 flot、json 系列绘制时间

转载 作者:行者123 更新时间:2023-11-28 01:40:00 26 4
gpt4 key购买 nike

JSON 数据没有被绘制?

Javascript:

var datasets = JSON.parse(xmlhttp.responseText);                
alert(JSON.stringify(datasets[0]));

var plotarea = $("#placeholder");
$.plot(plotarea, [[datasets[0].points]], {
xaxis: {
mode: "time",
min: (new Date(2013, 11, 1)).getTime(),
max: (new Date()).getTime()
}
});

输出:

{"name":"Test.txt","points":[[1389313796000,2],[1389314796000,4]]}

渲染图: enter image description here

最佳答案

绘图调用中的数据参数上有太多的 [ ] 组。应该是:

$.plot(plotarea, [datasets[0].points], { 

fiddle here .

即使修复了这个问题,您的“绘图”也只是右侧网格边框上的一条垂直线。

enter image description here

关于javascript - 使用 flot、json 系列绘制时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21034431/

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