Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var svg = d3.select("svg")
  2. .attr("width", 400)
  3. .attr("height", 400);
  4.  
  5. svg.append("circle")
  6. .attr("cx", 200)
  7. .attr("cy", 200)
  8. .attr("r", 50)
  9. .attr("fill", "gray")
  10. .attr("stroke", "black")
  11. .attr("stroke-width", 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement