当节点太小时,如何在d3中隐藏文本标签?

时间:2013-09-16 09:32:15

标签: javascript d3.js labels sunburst-diagram

我正在创建一个类似于此example的可缩放的旭日形态。问题是我的sunburst中有很多数据,因此文本标签组合在一起,几乎无法读取。因此,我想隐藏标签,因为它们太小,就像在这个d3.partition.layout示例中一样。我该如何实现此功能?

2 个答案:

答案 0 :(得分:1)

要实现这一点,您需要绘制文本元素,使用getBBox()获取其实际大小,并根据该大小显示或不显示。代码看起来像这样。

 svg.append("text")
    .style("opacity", function() {
      var box = this.getBBox();
      if(box.width <= available.width && box.height <= available.height) {
        return 1; // fits, show the text
      } else {
        return 0; // does not fit, make transparent
      }
    });

您当然也可以完全删除text元素,但这需要单独传递。

答案 1 :(得分:1)

我刚刚通过添加以下内容来实现此目的:

var kx = width / root.dx, ky = height / 1;

然后在文本声明部分中执行以下操作:

var text = g.append("text")
  .attr("transform", function(d) { return "rotate(" + computeTextRotation(d) + ")"; })
  .attr("x", function(d) { return y(d.y); })
  .attr("dx", "6") // margin
  .attr("dy", ".35em") // vertical-align
  .attr("opacity", function(d) { return d.dx * ky > 10 ? 1 : 0; })
  .text(function(d) { return d.name; });

以上的关键部分是这一行:

.attr("opacity", function(d) { return d.dx * ky > 10 ? 1 : 0; })

如果不够大,则将不透明度设置为0。然后在click函数中你需要做同样的事情,因为:

function click(d) {
  // fade out all text elements
  text.transition().attr("opacity", 0);

  kx = (d.y ? width - 40 : width) / (1 - d.y);
  ky = height / d.dx;

  path.transition()
    .duration(750)
    .attrTween("d", arcTween(d))
    .each("end", function(e, i) {
    // check if the animated element's data e lies within the visible angle span given in d
    if (e.x >= d.x && e.x < (d.x + d.dx)) {
      // get a selection of the associated text element
      var arcText = d3.select(this.parentNode).select("text");
      // fade in the text element and recalculate positions
      arcText.transition().duration(750)
        .attr("opacity", 1)
        .text(function(d) { return d.name; })
        .attr("opacity", function(d) { return e.dx * ky > 10 ? 1 : 0; })
        .attr("transform", function() { return "rotate(" + computeTextRotation(e) + ")" })
        .attr("x", function(d) { return y(d.y); });
        }
    });
}