Guest User

Untitled

a guest
Dec 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var width = $('svg').width();
  2. var height = $('svg').height();
  3. var svg = d3.select('svg');
  4.  
  5. svg
  6. .attr('width', width)
  7. .attr('height', height);
  8.  
  9.  
  10. var mySquare=svg.append("rect")
  11. .attr("x",60)
  12. .attr("y",60)
  13. .attr("width",60)
  14. .attr("height",60);
  15.  
  16.  
  17. mySquare
  18. .transition()
  19. .attr("width", 1000);
Add Comment
Please, Sign In to add comment