chart = d3.select(DOM.svg(600, 400))
.call(svg => {
svg.datum(sets)
.call(venn.VennDiagram())
svg.selectAll(".venn-circle path")
.style("fill", (d, i) => d['fill'])
.style("fill-opacity", .25)
svg.selectAll(".venn-circle text")
.style("fill", (d, i) => d['fill'])
})
.node()