我是 D3 的新手,正在尝试通过缩放和动画升级Kerryrodden 的序列 sunburst :
我在onclick
事件中添加了缩放机会并完全重绘了路径:
function click(d)
{
d3.select("#container").selectAll("path").remove();
var nodes = partition.nodes(d)
.filter(function(d) {
return (d.dx > 0.005); // 0.005 radians = 0.29 degrees
}) ;
var path = vis.data([d]).selectAll("path")
.data(nodes)
.enter().append("svg:path")
.attr("display", function(d) { return d.depth ? null : "none"; })
.attr("d", arc)
.attr("fill-rule", "evenodd")
.style("fill", function(d) { return colors[d.name]; })
.style("opacity", 1)
.on("mouseover", mouseover)
.on("click", click);
// Get total size of the tree = value of root node from partition.
totalSize = path.node().__data__.value;
}
但现在我在动画方面遇到了一些麻烦。我发现了许多版本的 attrTween:
bl.ocks.org/mbostock/1306365,bl.ocks.org/mbostock/4348373), _
但它们都不适用于我的情况。
如何为这个旭日形的钻取设置动画?