@ -3,5 +3,5 @@ circle {
fill: black;
}
svg {
border: 1px solid black;
overflow: visible;
@ -52,3 +52,9 @@ d3.selectAll('circle')
.attr('cx', function(datum, index){
return xScale(parseTime(datum.date));
});
var bottomAxis = d3.axisBottom(xScale);
d3.select('svg')
.append('g')
.call(bottomAxis)
.attr('transform', 'translate(0,'+HEIGHT+')');