当父对象d3时,在每个叶子中显示文本

时间:2014-07-28 21:30:33

标签: javascript d3.js

我想在父母聚焦时在叶子中显示文字: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; });

0 个答案:

没有答案