function visualizeTicksValues(scale, tickValues) {
const height = 20, m = width > 599 ? 90 : 10;
scale.range([m, width - m]);
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);
svg.append("g").call(d3.axisBottom(scale).tickValues(tickValues).tickFormat(d3.format(",.2f")));
return svg.node();
}