35

我正在使用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 元素重叠。

有什么办法可以说“如果文本超过一定宽度,裁剪它并添加椭圆”?

4

6 回答 6

74

溢出文本的包装函数:

    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);
于 2014-12-31T16:34:56.660 回答
17

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

有关完整示例,请参见此处

于 2013-04-12T17:39:34.253 回答
7

这个函数不依赖于 d3:

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 + "...";
    }
  }
}
于 2016-05-16T04:56:18.513 回答
2
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 is the text element of the SVG node
于 2018-10-15T08:46:46.830 回答
2

只是对 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);

在 JSFiddle 上查看。

于 2016-03-22T10:55:43.120 回答
-1

如果您编写 CSS,它将无法在 . 而不是那个写逻辑并在字符串中附加'...'。

于 2020-02-05T17:12:23.070 回答