16
var text = vis.selectAll("text")
    .data(words, function(d) { return d.text.toLowerCase(); });
    text.enter().append("text")
    .attr("text-anchor", "middle")
    .attr("transform", function(d) {
               return "translate(" + [d.x, d.y] + ")"})
    .style("font-size", function(d) { return d.size + "px"; })


    var bbox = text.node().getBBox();

如何使用 getBBox() 获取每个文本的文本区域?

4

2 回答 2

20

这里最好的方法取决于你想要做什么。大多数 d3 回调函数将提供当前 DOM 元素作为this,所以这应该可以工作:

text.each(function() {
    console.log(this.getBBox());
});

除此之外,问题是您需要使用该数字的上下文。例如,要获取文本宽度的总和,您可以执行以下操作:

var textWidth = 0;
text.each(function() {
    textWidth += this.getBBox().width;
});
于 2012-12-17T23:07:09.167 回答
11

您还可以使用 node() 在元素上同步执行此操作:

console.log(text.node().getBBox());
于 2014-07-29T11:33:44.903 回答