barChartByMonth = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
const barWidth = (width - (margin.left + margin.right)) / byMonth.length;
svg
.selectAll(".butterflies")
.data(byMonth)
.enter()
.append("rect")
.attr("x", (d, i) => i * barWidth + margin.left)
.attr("y", (d) => yBarByMonth(d.count))
.attr("width", barWidth)
.attr("height", (d) => yBarByMonth(0) - yBarByMonth(d.count))
.attr("fill", (d) => d3.interpolateWarm(colorBarByMonth(d.count)))
.attr("class", "butterflies");
svg
.selectAll(".xAxis")
.data(byMonth)
.enter()
.append("text")
.attr("x", (d, i) => i * barWidth + margin.left)
.attr("y", height - 15)
.text(function (d) {
if (d.yearMonth.slice(4) == "01") {
return d.yearMonth.slice(0, 4);
} else {
return "";
}
})
.attr("fill", "black")
.attr("font-family", "inter")
.attr("font-size", 10)
.attr("class", "xAxis");
svg.append("g").call(yBarByMonthAxis);
return svg.node();
}