2
我是新來的D3,我試圖用縮放和動畫升級Kerryrodden's sequences sunburst:D3序列旭日動畫
我已經添加了變焦機會與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),
但他們都不在我的情況下工作。
我怎樣才能動畫這個旭日的明細?
你見過[this example](http://bl.ocks.org/mbostock/4348373)嗎?我認爲它提供了你想要的所有動畫。 –
是的,它給了我一個錯誤: 錯誤:解析d =「函數(t){x.domain(xd(t)); y.domain(yd(t))。range(yr(t)); return arc(d);}「 – user3476013
不確定你的意思,這個例子對我來說工作得很好。 –