我在使用 highcharts-ng 时遇到了这个问题:当我尝试将新数据系列推送到图表中已经存在的数据系列上时,新系列将使用旧缩放进行缩放。我的问题是:有没有办法在加载后缩放到新系列的默认值?
$scope.datChart.series.pop();
$scope.datChart.series.push({data:dataArray, name:'Total'});
//$scope.datChart zoom out to default value of the new series
PS:函数 zoomOut() 不适用于 highcharts-ng。
不管怎么说,多谢拉