Quiero escribir texto dentro de un rectángulo se crea de la siguiente manera:Ajustar texto en SVG Element (El uso de D3/JS)
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')
Sin embargo, como se puede ver (http://jsfiddle.net/Tmj7g/3/) el texto se corta. ¿Alguna forma ingeniosa de escribir un párrafo dentro del rectángulo svg creado? Gracias,
hace este trabajo en IE9? ¿Si es así, cuáles son las alternativas? Sé que esto fue respondido hace mucho tiempo. – Jose
No he intentado esto en IE9. –
Sí, no funciona en absoluto en IE9 porque no admite objetos extraños. ¿Hay alguna alternativa para envolver texto en D3.js? – Jose