我想建立一个像Expertoption.com和iqoption.com这样的交易平台,所以请您告诉我如何使用highchart实时图表构建该系统。
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function () {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);
}, 1000);
}
}
}....