使用D3.js包装和垂直居中的文本

问题描述 投票:0回答:1

我有一个D3.js树形图,里面有一些标签。问题在于某些文本太长而无法放入盒子中,因此我必须将它们包装起来。我采用了this answer中提供的功能,并且包装工作正常。但是,当标签多于一行时,文本不会垂直居中。

到目前为止,我的解决方案是以dy属性的负值(对应于一半的行高乘以行数)开始第一行,而不是0。尽管它将文本稍微移到框的顶部,但仍未垂直居中。

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

        // this is my custom solution
        if (lineNumber > 0) {
            const startDy = -((lineNumber - 1) * (lineHeight / 2));
            text
                .selectAll("tspan")
                .attr("dy", (d, i) => startDy + lineHeight * i + "em");
        }
    });
}

已经看到类似的question,但答案中提供的垂直居中不适合我的用例。

javascript d3.js position
1个回答
0
投票

我意识到我使用的是行数-1,而不只是行数。删除-1解决了此问题。

if (lineNumber > 0) {
  const startDy = -(lineNumber * (lineHeight / 2));  // here was the issue
  text
    .selectAll("tspan")
    .attr("dy", (d, i) => startDy + lineHeight * i + "em");
}
© www.soinside.com 2019 - 2024. All rights reserved.