如何在svg rect中打包文本

时间:2016-10-11 09:30:26

标签: javascript css d3.js svg

我希望将svg文本放在rect中。我可以使用一种方法来比较宽度并为文本添加换行符,但这并不乏味。

有比这更优雅的方式吗?也许通过使用CSS或d3?

更新:以下代码使用d3附加foreignObject但不显示div。 (它在代码检查器中)



var group = d3.select("#package");
var fo = group.append("foreignObject").attr("x", 15).attr("y", 15).attr("width", 190).attr("height", 90);
fo.append("div").attr("xmlns", "http://www.w3.org/1999/xhtml").attr("style", "width:190px; height:90px; overflow-y:auto").text("Thiggfis the dgdexsgsggs wish to fit insidegssgsgs");

<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

<p id="p"></p>

<svg width="220" height="120" viewBox="0 0 220 120" id="package">
    <rect x="10" y="10" width="200" height="100" fill="none" stroke="black"/>
</svg>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:5)

attr不能分配命名空间,它是元素创建的副作用。你需要一个html div,所以你需要告诉d3通过调用元素xhtml:div,一旦你这样做,d3将完成其余的工作。

&#13;
&#13;
var group = d3.select("#package");
var fo = group.append("foreignObject").attr("x", 15).attr("y", 15).attr("width", 190).attr("height", 90);
fo.append("xhtml:div").attr("style", "width:190px; height:90px; overflow-y:auto").text("Thiggfis the dgdexsgsggs wish to fit insidegssgsgs");
&#13;
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

<p id="p"></p>

<svg width="220" height="120" viewBox="0 0 220 120" id="package">
    <rect x="10" y="10" width="200" height="100" fill="none" stroke="black"/>
</svg>
&#13;
&#13;
&#13;

答案 1 :(得分:2)

以下是用于将HTML标记插入SVG的foreignObject的简单示例:

&#13;
&#13;
<svg width="220" height="120" viewBox="0 0 220 120">
  <rect x="10" y="10" width="200" height="100" fill="none" stroke="black" />
  <foreignObject x="15" y="15" width="190" height="90">
    <div xmlns="http://www.w3.org/1999/xhtml" style="width:190px; height:90px; overflow-y:auto"><b>This</b> is the <i>text</i> I wish to fit inside <code>rect</code></div>
  </foreignObject>
</svg>
&#13;
&#13;
&#13;