I'm trying to animate an arc into a horizontal line and am not sure if this is possible and what is the best way to go about it. I'm drawing an arc using a path generator:
var arc = d3.svg.arc()
.outerRadius(function(d){ return d.outerRadius; })
.innerRadius(function(d){ return d.outerRadius*0.6; })
.startAngle(function(d){ return d.startAngle; })
.endAngle(function(d){ return d.endAngle; });
Then I am reading json data in and appending the arcs using pie layout:
var donut = d3.layout.pie();
var paths = arcs.selectAll("path").data(donut(json));
paths.enter().append("path")
.on("click", anim)
.attr("d", arc).transition().duration(1000)
.attrTween("d", tweenPie);
When the path is clicked on I want to be able to animate the arc to open up and flatten out to a horizontal line. How can I do this? Any advice is greatly appreciated. Thank you!!