I want to know how to use arcTween for animating for multiple arc path at a time. And what exactly the use of interpolate.?
Please find the below image which i am trying to achieve but couldn't able to. I hope i will get a better solution here.
And this is my code JSFiddle.
var partition=d3.layout.partition()
.size([Math.PI/2, radius])
.value(function (d) { return d.depth; });
After every click on button the arc paths should change their path in the mean of transitioning or animating just like showed in the above image.