I found this example (JSfiddle) to update a series.
$scope.chartConfig.series[0].data = rnd;
However the bars change instantly instead of smoothly when you click on the button 'Update Series'. Is it possible to have smooth transition effect of the bars like in this example (JSfiddle) while keeping AngularJS?
chart.series[0].data[0].update(i % 2 ? 200 : 0);
Kind regards, James.