circles = gCircles
.selectAll("circle")
.data(points)
.enter()
.append("circle")
.attr("cx", (f) => f.cgeom[0])
.attr("cy", (f) => f.cgeom[1])
.attr("fill", (f) => "url(#pattern" + f.code + ")")
.attr("stroke", "#666")
.attr("stroke-width", "1")
.on("mouseover", function (e, f) {
d3.select(this).attr("stroke", "#333").attr("stroke-width", "3");
gD.selectAll("*").remove();
const res = resDepI[f.code];
gD.append("text").text(res.nom).style("font-weight", "bold");
for (let i = 0; i < 2; i++) {
gD.append("text")
.text(candidates[i] + " - " + res.perc[i].toFixed(1) + " %")
.attr("x", 0)
.attr("y", 20 + 20 * i);
}
gD.attr("visibility", "visible");
})
.on("mouseout", function () {
d3.select(this).attr("stroke", "#666").attr("stroke-width", "1");
gD.attr("visibility", "hidden");
})