The running case我在自定义动态更新图表时遇到了问题。这是我的代码。
load : function () {
var series = this.series[0];
time2 = setInterval(function () {
var flag = true;
if ($('#pause:checked').length > 0) flag = false;
var x = (new Date()).getTime(), // current time
y = Math.round(Math.random() * 100);
xValue = x;
yValue = y;
series.addPoint([x, y], flag, flag);
console.log(xValue + ", " + yValue);
if(flag){
document.getElementById("currentFrequency").innerHTML = (x + " ");
document.getElementById("currentDb").innerHTML = (y + " ");
document.getElementById("currentFrequency2").innerHTML = (x);
}
}, 100);
}, // -> function load over
错误说:highstock.js:59错误:属性d:预期数字," ... 0.5325987144169 C 0 20.532598714 ..."。 生成随机数据的方式与官方演示中显示的方式完全相同。将间隔设置为低于1000时,可能会发生此问题。 任何人都可以弄清楚出了什么问题?非常感谢。