var dayLabels = svg.selectAll(".dayLabel")
                   .data(days)
                   .enter().append("text")
                   .text(function (d) { return d; })
                   .attr("x", 0)