yAxis = g => g
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(y))
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("dy", "-1.5em")
.attr("x", -30)
.attr("text-anchor", "start")
.style("font-weight", 800)
.text(data.yAxisLabel));