shapes: circle
HTML
<svg height="400px"></svg>
CSS
circle {
stroke:gray;
stroke-width:3px;
fill:teal;
}
JavaScript
d3.select('svg').append('circle')
.attr('cx',100)
.attr('cy',100)
.attr('r',50)
<svg height="400px"></svg>
circle {
stroke:gray;
stroke-width:3px;
fill:teal;
}
d3.select('svg').append('circle')
.attr('cx',100)
.attr('cy',100)
.attr('r',50)