xAxis = g => g
.attr("id", "axis")
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(x).tickSizeOuter(0))
.attr("opacity", "0")
.selectAll("text")
.attr("transform", "translate(10,0)rotate(-45)")
.style("text-anchor", "end")
.style("font-size", 16)
.style("fill", "#69a3b2")