fix: Month starts at 1, not 0

pull/135/head
Raphaël Vinot 2020-12-07 13:35:26 +01:00
parent 0a632c966a
commit 98ddef5b8b
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ d3.json('/json/stats').then(json => {
});
var x_scale = d3.scaleLinear()
.domain([0, 12])
.domain([1, 12])
.range([0, width]);
var y_scale = d3.scaleLinear()
.domain([ 0,