D3 圆形包装中的两行标签文本

Two line label text in D3 circle packing

我已经搜索了该站点中的当前主题,但没有任何解决方案可以解决我的问题。

对于 D3 圆形包装中的长文本,如何在两行中显示文本。我正在使用以下代码在圆圈上显示标签:

const label = svg.append("g")
      .style("font-weight", "bold")
      .attr("pointer-events", "none")
      .attr("text-anchor", "middle")    
      .selectAll("text")
      .data(root.descendants())
      .join("text")
      .style("fill-opacity", d => d.parent === root ? 1 : 0)
      .style("text-shadow", "0px 0px 11px #FFF")
      .style("display", d => d.parent === root ? "inline" : "none")
      .attr("dy", "0.3em")
      .text(d => d.data.name);

SVG 没有内置的自动换行选项来为长文本自动拆分行。 Mike Bostock 在此处 https://bl.ocks.org/mbostock/7555321 描述了一个换行函数,它在您提供 textwidth 属性时将文本拆分为适当的行。

function wrap(text, width) {
  text.each(function() {
    var text = d3.select(this),
        words = text.text().split(/\s+/).reverse(),
        word,
        line = [],
        lineNumber = 0,
        lineHeight = 1.1, // ems
        y = text.attr("y"),
        dy = parseFloat(text.attr("dy")),
        tspan = text.text(null).append("tspan").attr("x", 0).attr("y", y).attr("dy", dy + "em");
    while (word = words.pop()) {
      line.push(word);
      tspan.text(line.join(" "));
      if (tspan.node().getComputedTextLength() > width) {
        line.pop();
        tspan.text(line.join(" "));
        line = [word];
        tspan = text.append("tspan").attr("x", 0).attr("y", y).attr("dy", ++lineNumber * lineHeight + dy + "em").text(word);
      }
    }
  });
}

您可以通过使用 selectAll(".textclass").call(wrap,textwidth) 在选择中调用它来调用它,其中 textclass 是您要换行的文本的 class,textwidth 是宽度允许的文本。