我想在父母聚焦时在叶子中显示文字:http://i60.tinypic.com/25qxdzt.jpg。这是我的代码,仅在最后一个父项聚焦时显示文本:
var text = svg.selectAll("text")
.data(nodes)
.enter().append("text")
.attr("class", "label")
.style("fill-opacity", function(d) { return d.parent === root ? 1 : 0; })
.style("display", function(d) { return d.children ? null : "none"; })
.text(function(d) { return d.name; });