chart = {
const svg = d3.select(DOM.svg(width, height));
const g = svg
.append("g")
.attr("transform", `translate(${width / 2},${height / 2})`);
g.selectAll("path")
.data(arcs)
.join("path")
.attr("fill", d => (d.data.arc === "hasColor" ? "blue" : 'none'))
.attr("stroke", 'blue')
.attr("stroke-width", "1px")
.attr("d", d => arc(d));
return svg.node();
}