shapes: circle

by Laurie Skelly

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)