我是D3的新手,我正在尝试使用缩放和动画升级Kerryrodden's sequences 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),
但在我的情况下,它们都不起作用。
如何为这次森伯斯特的钻取动画制作动画?
答案 0 :(得分:3)
解决方案成立:
为轴插值添加了arcTween和stash函数
function arcTween(a){
var i = d3.interpolate({x: a.x0, dx: a.dx0}, a);
return function(t) {
var b = i(t);
a.x0 = b.x;
a.dx0 = b.dx;
return arc(b);
};
};
function stash(d) {
d.x0 = 0; // d.x;
d.dx0 = 0; //d.dx;
};
和transition()属性到路径初始化:
path.each(stash)
.transition()
.duration(750)
.attrTween("d", arcTween);
全部谢谢。