I'm using highcharts-ng to create a dynamically updated piechart.
When the data changes the slices animate (grow or shrink in size). I am trying to achieve a similar effect with a regard to the start angle of the chart.
When the startAngle property of a series changes I would like a transition animation to occur. I don't know if this is possible.
Here's a JSFiddle which shows the change in start angle, but without the animation.
http://jsfiddle.net/367gjasq/2/
here's a snippet of code from the jsFiddle which shows how I'm currently updating the startAngle property of the chart
$scope.updateChartData = function() {
//access to highcharts, though not using currently
var h = $scope.chartConfig.getHighcharts();
//register a change in series start angle
$scope.chartConfig.series[1].startAngle += 20;
//to make demo better, restart inner donut start angle
if($scope.chartConfig.series[1].startAngle >= 0)
$scope.chartConfig.series[1].startAngle = -360;
//issue a digest so changes will reflect in chart
$scope.$digest();
};