我想在我创建的矩形内写入文本,如下所示:
body = d3.select('body')
svg = body.append('svg').attr('height', 600).attr('width', 200)
rect = svg.append('rect').transition().duration(500).attr('width', 150)
.attr('height', 100)
.attr('x', 40)
.attr('y', 100)
.style('fill', 'white')
.attr('stroke', 'black')
text = svg.append('text').text('This is some information about whatever')
.attr('x', 50)
.attr('y', 150)
.attr('fill', 'black')
但是,如您所见(http://jsfiddle.net/Tmj7g/3/),文本被截断。在创建的 svg 矩形内写一个段落的任何漂亮方法?谢谢,