I am trying to apply a transition over a d3.pack().
Please check http://bl.ocks.org/3263043
I want to symbolize by a new paremeter, but when applying transitions, the new circles and its parents don't keep the structural 'harmony' anymore (some children circles are not contained anymore by its parents).
I apply the new value via...
pack.value(function(d) {
return gScale(d.new_parameter)
})
Reconstruct the package...
svg.data([json]).selectAll("g.node").data(pack.nodes)
append new nodes (which should be already correctly positioned with its parents) and finally make a circle transition (its new radius should be proportional to the new pack, so I don't understand where the error is...)
Any idea or reference?
