当文本变长时,我的d3 y轴溢出,如何在图表中打断单词?

时间:2018-10-28 13:04:32

标签: javascript d3.js

svg.append("g").attr("class", "y axis").transition().call(yAxis);

如何在y轴上生成的每个文本上添加分隔符。我完全无法更新js中的文本

1 个答案:

答案 0 :(得分:1)

您可以使用here所用的自动换行功能在轴标签中自动换行

preg

像这样打电话。

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);
      }
    }
  });
}

这是针对x轴的,如果您需要y轴,则需要将其应用于y轴

enter image description here