我想让文本包装在下面的D3树上,而不是
Foo is not a long word
每一行被包裹到
Foo is
not a
long word
我已经尝试将文本设为' foreignObject'而不是文本对象,文本确实包装,但它不会在树动画上移动,而是全部分组在左上角。
代码位于
http://jsfiddle.net/mikeyai/X43X5/1/
使用Javascript:
var width = 960,
height = 500;
var tree = d3.layout.tree()
.size([width - 20, height - 20]);
var root = {},
nodes = tree(root);
root.parent = root;
root.px = root.x;
root.py = root.y;
var diagonal = d3.svg.diagonal();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(10,10)");
var node = svg.selectAll(".node"),
link = svg.selectAll(".link");
var duration = 750,
timer = setInterval(update, duration);
function update() {
if (nodes.length >= 500) return clearInterval(timer);
// Add a new node to a random parent.
var n = {id: nodes.length},
p = nodes[Math.random() * nodes.length | 0];
if (p.children) p.children.push(n); else p.children = [n];
nodes.push(n);
// Recompute the layout and data join.
node = node.data(tree.nodes(root), function(d) { return d.id; });
link = link.data(tree.links(nodes), function(d) { return d.source.id + "-" + d.target.id; });
// 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');
// Add entering links in the parent’s old position.
link.enter().insert("path", ".node")
.attr("class", "link")
.attr("d", function(d) {
var o = {x: d.source.px, y: d.source.py};
return diagonal({source: o, target: o});
});
// Transition nodes and links to their new positions.
var t = svg.transition()
.duration(duration);
t.selectAll(".link")
.attr("d", diagonal);
t.selectAll(".node")
.attr("x", function(d) { return d.px = d.x; })
.attr("y", function(d) { return d.py = d.y; });
}
答案 0 :(得分:26)
您可以修改Mike Bostock's "Wrapping Long Labels" example以将<tspan>
元素添加到<text>
个节点。将包装文本添加到节点需要进行两项主要更改。我没有深入研究文本在转换期间更新其位置,但它不应该太难添加。
首先是根据上例中的函数添加函数wrap
。 wrap
将负责添加<tspan>
元素,以使文字适合某个宽度:
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
x = text.attr("x"),
y = text.attr("y"),
dy = 0, //parseFloat(text.attr("dy")),
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);
}
}
});
}
第二个变化是,您需要为每个节点调用wrap
,而不是设置每个节点的文本:
// 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
答案 1 :(得分:2)
另一个选择,如果你愿意添加另一个JS库,就是使用D3plus,一个D3插件。它具有内置的text wrapping功能。它甚至支持填充和调整文本大小以填充可用空间。
d3plus.textwrap()
.container(d3.select("#rectWrap"))
.draw();
我用过它。它肯定比你自己计算包装好。
another d3 plugin可用于文字换行,但我从未使用它,因此我无法说出它的实用性。
答案 2 :(得分:0)
这是一种使用d3 plus进行文本换行的方法。它对我来说非常容易,现在在所有浏览器中都可以使用
d3plus.textwrap()
.container(d3.select("#intellectual"))
.shape('square')
.width(370)
.height(55)
.resize(true)
.draw();
&#13;
答案 3 :(得分:0)
如果您使用的是React,那么您可以使用的库是@visx/text。它公开了功能更强大的SVG文本元素,该元素支持width
参数。
import { Text } from '@visx/text';
const App = () => (
<svg>
<Text width={20}>Foo is not a long word</Text>
</svg>
);