12

以下代码用于显示 javascript 树形图的文本标签。

nodeEnter.append("svg:text")
        .attr("x", function(d) { return d._children ? -8 : -48; }) /*the position of the text (left to right)*/
        .attr("y", 3) /*the position of the text (Up and Down)*/

        .text(function(d) { return d.name; });

这使用 svg,它没有自动换行能力。我如何改变这个做一个正常的段落

这样我就可以使用 css 来换行它。如何制作此常规文本而不是 svg 文本?

4

4 回答 4

15

这是使用 D3 自动换行文本的示例代码:

var nodes = [
    {title: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut"}
]

var w = 960, h = 800;

var svg = d3.select("body").append("svg")
    .attr("width", w)
    .attr("height", h);

var vSeparation = 13, textX=200, textY=100, maxLength=20

var textHolder = svg.selectAll("text")
    .data(nodes)
    .enter().append("text")
    .attr("x",textX)
    .attr("y",textY)
    .attr("text-anchor", "middle")
    .each(function (d) {
        var lines = wordwrap(d.title, maxLength)

        for (var i = 0; i < lines.length; i++) {
            d3.select(this).append("tspan").attr("dy",vSeparation).attr("x",textX).text(lines[i])
        }
    });


function wordwrap(text, max) {
    var regex = new RegExp(".{0,"+max+"}(?:\\s|$)","g");
    var lines = []

    var line
    while ((line = regex.exec(text))!="") {
        lines.push(line);
    } 

    return lines
}
于 2013-08-11T22:15:39.123 回答
11

你可能想要使用 SVG foreignObject 标签,所以你会有这样的东西:

nodeEnter.append("foreignObject")
    .attr("x", function(d) { return d._children ? -8 : -48; }) /*the position of the text (left to right)*/
    .attr("y", 3) /*the position of the text (Up and Down)*/
    .attr("width", your_text_width_variable)
    .attr("height", your_text_height_variable)
    .append("xhtml:body")
    .append("p")
    .text(function(d) { return d.name; });

这是 Mike Bostock 的一个要点,它帮助了我:https ://gist.github.com/1424037

于 2012-10-01T19:14:57.653 回答
0

foreignObjectIE 不支持,Chrome 也不支持过渡。如果这些限制没问题,那么我建议使用foreignObject,因为您可以获得 HTML+CSS 的所有格式。

如果您需要支持 IE 或转换,那么我建议使用 D3 插件,例如D3plus。它使文本换行变得非常容易。

d3plus.textwrap()
  .container('selector')
  .draw();

查看文档以了解其所有功能。

于 2015-06-04T16:15:53.787 回答
0

您可以使用 D3.js 使用此通用函数将 svg:text 元素中的文本包装成多个 svg:tspan 子元素(每行一个 tspan):

    function wrapText(text, width) {
        text.each(function () {
            var textEl = d3.select(this),
                words = textEl.text().split(/\s+/).reverse(),
                word,
                line = [],
                linenumber = 0,
                lineHeight = 1.1, // ems
                y = textEl.attr('y'),
                dx = parseFloat(textEl.attr('dx') || 0), 
                dy = parseFloat(textEl.attr('dy') || 0),
                tspan = textEl.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 = textEl.append('tspan').attr('x', 0).attr('y', y).attr('dx', dx).attr('dy', ++linenumber * lineHeight + dy + 'em').text(word);
                }
            }
        });
    }

你可以像这样使用它:

svg.selectAll('text').call(wrapText, 100);
于 2015-07-07T11:14:35.480 回答