我正在研究STOCK AM CHART。 5分钟后动态更新数据。 现在我已经做到了。 但是问题是当添加新数据时.scrollbars最终移动。最后只有最后一个数据可见。所以我想避免这种情况并避免图表移动滚动条
我尝试了以下代码
this.AmCharts.updateChart(this.priceChart, () => {
data.forEach(element => {
this.priceChart.dataSets[0].dataProvider.push(element);
this.priceChart.validateData();
});
console.log( this.priceChart.dataSets[0].dataProvider);
});