我还是JS,JQuery和Highcharts的新手。
来自HighStock的“动态更新”示例:
chart: {
events: {
load: function() {
var series = this.series[0];
var y = 1;
setInterval(function() {
var x = (new Date()).getTime();
$.get('get_most_recent_point_from_database.php',function(data){
alert( data);
var y = data;
// y = 10;
alert( y);
series.addPoint([x, y], true, true);
});
}, 1000);
}
}
},
“get_most_recent_point_from_database.php”生成一个整数。
警报显示整数,但series.addPoint不会将整数添加到图表中。该图表空白。
“y = 10;” (在代码中注释掉)将用10更新图表。
我通过“var y = 1;”将y设置为整数认为这可能有所帮助。
有什么想法?如果有帮助,我可以把它全部放在JSFiddle中。
修正======================
setInterval(function() {
var x = (new Date()).getTime(), y;
$.get('get_most_recent_point_from_database.php',function(data){
y = parseFloat(data).toFixed(1);
series.addPoint([x, y], true, true);
});
}, 1000);
答案 0 :(得分:0)
您的数据如何?可能它是字符串,所以尝试通过parseFloat(数据)转换它(如果它是单点)或在php中使用json_encode()。 (全部取决于你的php文件的样子)