xAxis = g => g
.attr("transform", `translate(0,${height - margin.bottom})`)
.attr("aria-hidden", "true")
.call(d3.axisBottom(x)
.tickSizeOuter(0)
.tickFormat(d => d3.timeFormat("%a")(d).substring(0, 1))
)
.call(g => g.select(".domain").style("stroke", "#202630"))
.call(g => g.selectAll(".tick line").remove())
.call(g => g.selectAll(".tick text")
.style("font-size", "clamp(.7rem, 2.5vw, 1.0rem)")
.style("fill", "#767676"))
;