在 D3 中换行
要在 D3 中换行,您可以实现动态添加多个
<code class="javascript">function wrap(text, width) { text.each(function () { var words = d3.select(this) .text() .split(/\s+/); words = words.reverse(); var line = []; var lineNumber = 0; var lineHeight = 1.1; // ems var x = text.attr("x"); var y = text.attr("y"); var dy = 0; // parseFloat(text.attr("dy")); var tspan = text .text(null) .append("tspan") .attr("x", x) .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", x) .attr("y", y) .attr("dy", ++lineNumber * lineHeight + dy + "em") .text(word); } } }); }</code>
然后,您不必直接设置每个节点的文本,而是必须对其调用包装函数:
<code class="javascript">// Add entering nodes in the parent’s old position. node.enter() .append("text") .attr("class", "node") .attr("x", function (d) { return d.parent.px; }) .attr("y", function (d) { return d.parent.py; }) .text("Foo is not a long word") .call(wrap, 30); // wrap the text in <= 30 pixels</code>
这将包装您的基于
以上是如何在 D3 中进行字符限制文本换行?的详细内容。更多信息请关注PHP中文网其他相关文章!