在SVG中添加省略号以溢出文本?

时间:2013-04-12 15:34:06

标签: css d3.js svg

我正在使用D3.js。我想找到一个等同于这个CSS类的SVG,如果文本流出其包含的div,它会添加省略号:

.ai-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -moz-binding: url(<q>assets/xml/ellipsis.xml#ellipsis</q>);
}

这是我的SVG:

<g class="bar" transform="translate(0,39)">
    <text class="label" x="-3" y="6.5" dy=".35em" text-anchor="start">Construction</text>    
    <rect height="13" width="123"></rect>
</g>

它的生成如下:

barEnter.append("text").attr("class", "label")
        .attr("x", -3).attr("y", function() { return y.rangeBand() / 2})
        .attr("dy", ".35em").attr("text-anchor", "start")
        .text(function(d) {
            return d.Name;
        });

目前,文本溢出并重叠了rect元素。

有什么方法可以说“如果文字超过一定的宽度,裁剪它并添加省略号”?

6 个答案:

答案 0 :(得分:58)

用于溢出文本的包装函数:

    function wrap() {
        var self = d3.select(this),
            textLength = self.node().getComputedTextLength(),
            text = self.text();
        while (textLength > (width - 2 * padding) && text.length > 0) {
            text = text.slice(0, -1);
            self.text(text + '...');
            textLength = self.node().getComputedTextLength();
        }
    } 

用法:

text.append('tspan').text(function(d) { return d.name; }).each(wrap);

答案 1 :(得分:14)

我不知道SVG的等效CSS类,但您可以使用foreignObject在SVG中嵌入HTML。这使您可以访问此功能,并且通常更灵活(例如,您可以轻松地自动换行)。

有关完整示例,请参阅here

答案 2 :(得分:3)

我实现了一个不依赖于d3的本机函数,这个函数实现了3路回退:

function textEllipsis(el, text, width) {
  if (typeof el.getSubStringLength !== "undefined") {
    el.textContent = text;
    var len = text.length;
    while (el.getSubStringLength(0, len--) > width) {}
    el.textContent = text.slice(0, len) + "...";
  } else if (typeof el.getComputedTextLength !== "undefined") {
    while (el.getComputedTextLength() > width) {
      text = text.slice(0,-1);
      el.textContent = text + "...";
    }
  } else {
    // the last fallback
    while (el.getBBox().width > width) {
      text = text.slice(0,-1);
      // we need to update the textContent to update the boundary width
      el.textContent = text + "...";
    }
  }
}

答案 3 :(得分:0)

只是对user2846569提出的wrap函数的更新。 getComputedTextLength()往往非常慢,所以......

编辑

我努力应用 user2846569 的建议,并制作了一个带有“二进制”搜索的版本,具有一定的校准和参数化精度。

'use strict';

var width = 2560;

d3.select('svg').attr('width', width);

// From http://stackoverflow.com/questions/10726909/random-alpha-numeric-string-in-javascript
function randomString(length, chars) {
    var result = '';
    for (var i = length; i > 0; --i)
        result += chars[Math.floor(Math.random() * chars.length)];
    return result;
}

function wrap() {
    var self = d3.select(this),
        textWidth = self.node().getComputedTextLength(),    // Width of text in pixel.
        initialText = self.text(),                          // Initial text.
        textLength = initialText.length,                    // Length of text in characters.
        text = initialText,
        precision = 10, //textWidth / width,                // Adjustable precision.
        maxIterations = 100; // width;                      // Set iterations limit.

    while (maxIterations > 0 && text.length > 0 && Math.abs(width - textWidth) > precision) {

        text = /*text.slice(0,-1); =*/(textWidth >= width) ? text.slice(0, -textLength * 0.15) : initialText.slice(0, textLength * 1.15);
        self.text(text + '...');
        textWidth = self.node().getComputedTextLength();
        textLength = text.length;
        maxIterations--;
    }
    console.log(width - textWidth);
}

var g = d3.select('g');

g.append('text').append('tspan').text(function(d) {
    return randomString(width, 'a');
}).each(wrap);

View on JSFiddle.

答案 4 :(得分:-1)

function trimText(text, threshold) {
    if (text.length <= threshold) return text;
    return text.substr(0, threshold).concat("...");
}

使用此功能设置SVG节点文本。阈值(例如20)取决于您。这意味着您将在节点文本中最多显示20个字符。超过20个字符的所有文本将被修剪,并在修剪文本的末尾显示“ ...”。

用法,例如。 :

var self = this;
nodeText.text(x => self.trimText(x.name, 20)) // nodeText it's the text element of the SVG node

答案 5 :(得分:-2)

如果您编写CSS,它将无法正常运行。 代替该写逻辑,并在字符串中附加“ ...”。