shapes: circle

by ben straate

HTML

<svg height="400px"></svg>

CSS

svg {
  background: aliceblue;
}

circle {
    stroke:gray;
    stroke-width:3px;
    fill:tomato;
}

JavaScript

d3.select('svg').append('circle')
.attr('cx',100)
.attr('cy',100)
.attr('r',50)