vennVoorzieningen = (data) =>
d3
.select(DOM.svg(width, 600))
.call((svg) => {
svg.datum(data).call(venn.VennDiagram().width(width).height(600));
svg
.selectAll(".venn-circle path")
.style("fill", (d, i) => d["fill"])
.style("fill-opacity", 0.75);
svg
.selectAll(".venn-circle text")
.style("fill", "black")
.style("font-size", "24px");
svg.selectAll("text").style("font-family", "Work Sans");
svg.selectAll("g").on("mouseover", function (d, i) {
svg
.selectAll("g")
.append("text")
.attr("class", "tooltip")
.attr("x", 0)
.attr("y", 580)
.text(
d.label +
": " +
d.size +
" (" +
Math.round(
(d.size /
d3.sum(
data.filter((d) => d.sets.length === 1),
(d) => d.size
)) *
1000
) /
10 +
"%)"
);
});
svg.selectAll("g").on("mouseout", function (d, i) {
d3.selectAll(".tooltip").text("");
});
})
.node()