首先,在wrap()
裏面的工作完成後,您需要將結果高度存儲在文本的基準面上:d.height = 19 * (lineNumber + 1);
。這樣,高度就可以滿足任何需求。例如,您可以使用它來設置wrap()
之外的rect
高度,而不是parentNode.children[0]
之間的高度,這可以更好地分離關注點。無論如何,這是什麼wrap()
結束是:
function wrap(text, width) {
text.each(function (d) { // DIFF add param d
var text = d3.select(this),
// DIFF: use datum to get name, instead of element text
words = d.name.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);
}
}
// DIFF: store the height via the datum, d
d.height = 19 * (lineNumber + 1);
d3.select(this.parentNode.children[0]).attr('height', 19 * (lineNumber + 1));
});
}
});
現在,你有d.height
,你可以用它來計算對角線的端點的必要補償。
// calculate source and target offsets
// d.height gets set by the wrap() function
var diagonal = d3.svg.diagonal()
.source(function (d) {
return {
"x": d.source.x + d.source.height/2,
"y": d.source.y + 150
};
})
.target(function (d) {
return {
"x": d.target.x + d.target.height/2,
"y": d.target.y
};
})
.projection(function (d) { return [d.y + 0, d.x + 0];
});
見modified fiddle
也許我做錯了什麼,而是你的小提琴不顯示任何內容。 – jmpyle771 2015-02-23 23:39:49
使用谷歌鉻可能? – 2015-02-23 23:47:24
@ barnacle.m你能告訴我,你究竟想要展示什麼,我沒有在D3樹佈局中追加鏈接到矩形的一邊,這裏鏈接是什麼意思? 而你的代碼工作正常。 – 2015-02-24 04:48:38