Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

D3 transition not working

I have the following SVG element:

<svg id='svgTest' xmlns="http://www.w3.org/2000/svg" version="1.1">
  <g id="test">
    <rect height="20" width="50" fill="blue"/>
  </g>
</svg>

I want to add a transition for the blue rectangle. I tried with the following code with D3:

var rect = d3.select("#test");
rect.transition().duration(5000).attr('height',200);

But it doesn't seem to do anything. What's wrong?

like image 982
PLui Avatar asked Oct 12 '12 19:10

PLui


1 Answers

You need to select the 'rect' element. Try this:

var rect = d3.select("#test rect");

rect.transition().duration(5000).attr('height',200);

If you want to update multiple elements, use d3.selectAll().

like image 106
Gabriel Florit Avatar answered Oct 11 '22 22:10

Gabriel Florit