function styleBar(bar){
bar.selectAll("rect")
.remove();
bar.select(".domain")
.attr("shape-rendering", "crispEdges");
const text = bar.select(".tick:last-of-type").text();
const ticks = bar.selectAll(".tick");
ticks.select("line")
.attr("y2", text.includes("km") ? -10 : 10)
.style("display", (d, i, e) => i === e.length - 1 ? "block" : "none")
ticks.select("text")
.attr("dy", text.includes("km") ? -3 : 12)
.attr("text-anchor", "start")
.attr("font-size", 14)
.style("user-select", "none")
.style("display", (d, i, e) => i === 0 ? "block" : "none")
.style("paint-order", "stroke fill")
.style("stroke", "white")
.style("stroke-linecap", "round")
.style("stroke-linejoin", "round")
.style("stroke-opacity", .5)
.style("stroke-width", 4);
bar.select(".tick text")
.text(text);
}