Guest User

Untitled

a guest
Dec 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <h3>D3 Circle</h3>
  2. <script>
  3. d3.select("body")
  4. .append("svg")
  5. .attr("width", 50)
  6. .attr("height", 50)
  7. .append("circle")
  8. .attr("cx", 25)
  9. .attr("cy", 25)
  10. .attr("r", 25)
  11. .style("fill", "purple");
  12. </script>
  13.  
  14.  
  15. <h3>D3 Text</h3>
  16. <script>
  17. d3.select("body")
  18. .append("svg")
  19. .attr("width", 50)
  20. .attr("height", 50)
  21. .append("text")
  22. .attr("x", 0)
  23. .attr("y", 15)
  24. .text("Essay");
  25. </script>
Add Comment
Please, Sign In to add comment