gpt4 book ai didi

javascript - Highchart xAxis "6 Hours Ago","5 Hours ago"等等。当我的图表正在更新时

转载 作者:行者123 更新时间:2023-11-30 01:16:22 33 4
gpt4 key购买 nike

我正在使用 JSON 将数据获取到我的数据库。有没有办法在图表更新时将 xAxis 转到 6 小时前、5 小时前、4 小时前、3 小时前、2 小时前、1 小时前?因为我正在使用 LM35 将温度导入到我的数据库中。我真的需要你的帮助。 ( 对不起,我的英语不好)。提前致谢。这是我的代码

$(function () {
$(document).ready(function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});





$(document).ready(function() {
var options = {
chart: {
renderTo: 'container',

type: 'line',
marginRight: 130,
marginBottom: 65,
},
title: {
text: 'Temperature Over Time',
x: -20 //center
},
subtitle: {
text: '',
x: -20
},
xAxis: {
tickInterval:12,
range:20,
categories:[]
},


scrollbar: {
enabled: true,
barBackgroundColor: 'gray',
barBorderRadius: 7,
barBorderWidth: 0,
buttonBackgroundColor: 'gray',
buttonBorderWidth: 0,
buttonArrowColor: 'yellow',
buttonBorderRadius: 7,
rifleColor: 'yellow',
trackBackgroundColor: 'white',
trackBorderWidth: 1,
trackBorderColor: 'silver',
trackBorderRadius: 7
},


yAxis: {
min:0,
max: 40,
title: {
text: 'Temperature',
},


plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},


tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y;
}

},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: []
}

refreshDiv();
$(window).scrollLeft($(window).width());
setInterval(refreshDiv, 300000);
function refreshDiv(){
$.getJSON("data.php", function(json) {
options.xAxis.categories = json[0]['data'];
options.series[0] = json[1];
chart = new Highcharts.Chart(options);
});
}

});
});
});

最佳答案

代替此代码:

$.getJSON("data.php", function(json) {
options.xAxis.categories = json[0]['data'];
options.series[0] = json[1];
chart = new Highcharts.Chart(options);
});

您可以使用setCategories功能和setData ,但我建议创建图表,然后仅使用 addPoint以间隔运行,如示例所示:http://www.highcharts.com/demo/dynamic-update如果xAxis不正确,您可以设置日期时间type和反转参数]( http://api.highcharts.com/highcharts#xAxis.reversed )

关于javascript - Highchart xAxis "6 Hours Ago","5 Hours ago"等等。当我的图表正在更新时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19021091/

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