我正在使用D3和SVG,并尝试使用属性和链接来包装一些文本。这是我目前的代码:
vis.append("svg:text")
.attr("x", "0")
.attr("y", "0")
.attr("text-anchor", "middle")
.append("svg.tspan")
.attr("dy", ".35em")
.text("Revenue Split")
.text("for Current Month")
.attr("transform", "translate(50,50)")
.attr("class", "title");
以上是尝试将此答案翻译为使用attr
:https://stackoverflow.com/a/16701952/1179880
我的尝试导致屏幕上没有显示任何内容。
更新
在目前的两个答案的帮助下,我将我的代码修改为以下内容:
vis.append("svg:text")
.attr("x", "0")
.attr("y", "0")
.attr("class", "title")
.attr("text-anchor", "middle")
//.attr("transform", "translate(50,50)")
.text("Revenue Split")
.append("svg:tspan")
.attr("dy", ".35em")
.attr("text-anchor", "middle")
.text("for Current Month")
.attr("class", "title");
它似乎朝着正确的方向前进 - 尽管不尽如人意,并且分为两条不同的路线。案文如下......
答案 0 :(得分:2)
总的来说,你可能想要这样的......
vis.append("svg:text")
.attr("x", "0")
.attr("y", "0")
.attr("text-anchor", "middle")
.attr("transform", "translate(50,50)")
.text("Revenue Split")
.append("svg:tspan")
.attr("dy", ".35em")
.text("for Current Month")
.attr("class", "title");
答案 1 :(得分:1)
您必须定义text
元素的文本,然后定义tspan
元素的文本:
vis.append("text")
.attr("x", "0")
.attr("y", "0")
.attr("text-anchor", "middle")
.text("Revenue Split")
.append("tspan")
.attr("x", "0")
.attr("dy", ".35em")
.text("for Current Month")
.attr("class", "title");
答案 2 :(得分:0)
Mark在上述评论中的代码有效:
vis.append("svg:text")
.attr("x", "0")
.attr("y", "0")
.attr("class", "title")
.attr("text-anchor", "middle")
.text("Revenue Split")
.append("svg:tspan")
.attr("dy", "1.1em")
.attr("x", 0)
.attr("text-anchor", "middle")
.text("for Current Month")
.attr("class", "title");