chart2 = {
const svg = d3.select(DOM.svg(width, height));
svg.append("g")
.attr("fill", "charcoal")
.selectAll("circle")
.data(data)
.join("circle")
.attr("cx", d => xHybrid(d.name))
.attr("cy", d => y(d.value) - 3)
.attr("r", 3);
svg.append("g")
.attr("fill", "steelblue")
.selectAll("rect")
.data(data)
.join("rect")
.attr("x", d => xHybrid.band(d.name))
.attr("y", d => y(d.value))
.attr("height", d => y(0) - y(d.value))
.attr("width", xHybrid.bandwidth());
svg.append("g")
.style('color', 'charcoal')
.call(xAxisHybrid);
svg.append("g")
.call(yAxis);
return svg.node();
}