@ -1,3 +1,6 @@
body {
margin: 20px 40px;
}
circle {
r: 5;
fill: black;
@ -58,3 +58,8 @@ d3.select('svg')
.append('g')
.call(bottomAxis)
.attr('transform', 'translate(0,'+HEIGHT+')');
var leftAxis = d3.axisLeft(yScale);
d3.select('svg')
.call(leftAxis);