xAxis和导航器不会根据系列

时间:2016-06-24 10:26:25

标签: angularjs highcharts

我需要根据一些过滤器更新使用angular制作的高图,这是初始图表:

enter image description here

这是过滤后的图表:

enter image description here

我正在使用:hightcharts-ng与Highstock

正如您所看到的,xAxis存在问题,它不会更新。 我使用此代码更新图表:

$scope.chartConfigTotGiorni.xAxis.categories = categories;
$scope.chartConfigTotGiorni.series[0].data = data;
$scope.chartConfigTotGiorni.getHighcharts().redraw();

elso试过:

$scope.chartConfigTotGiorni.getHighcharts().xAxis[0].update({categories: categories});
$scope.chartConfigTotGiorni.getHighcharts().series[0].setData(data);
$scope.chartConfigTotGiorni.getHighcharts().redraw();

但没有任何改变。我还尝试使用setExtremes()函数和任何结果....

编辑:

enter image description here

更新第二个系列(导航器)后视图仍然不好,似乎我在开头有一个-1值,到底有其他值,我无法弄清楚如何解决这个问题

WORKING FIDDLE

0 个答案:

没有答案