chart = {
const svg = d3.create("svg").attr("viewBox", `0, 0, ${width}, ${height}`);
const tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("position", "absolute")
.style("visibility", "hidden");
svg.selectAll("path")
.data(countries.features)
.enter()
.append("g")
.attr("class", "country-group")
.each(function (d) {
const countryGroup = d3.select(this);
countryGroup.append("path")
.attr("d", path)
.attr("stroke", "#111")
.attr("stroke-width", 0.5)
.on("mouseover", function (event, d) {
let text = d.properties.name
const mean_homo = d.properties.dataJoined.get(year)[0].mean_homo
const mean_homo_rounded = Math.round((mean_homo + Number.EPSILON) * 100) / 100
text = text + "\nJustifiability: " + mean_homo_rounded
showToolTip(text, [event.pageX, event.pageY])
})
.on("mousemove", function (event) {
d3.select(".tooltip")
.style("top", event.pageY - 10 + "px")
.style("left", event.pageX + 10 + "px")
})
.on("mouseout", function () {
d3.select(".tooltip").style("visibility", "hidden")
})
.attr("fill", d => d.properties.dataJoined?.get(year)
? cScale(d.properties.dataJoined.get(year)[0].mean_homo)
: "lightgrey");
const whenLegalYear = d.properties.dataJoined?.get(year) ? d.properties.dataJoined.get(year)[0].when_legal : null;
const symbolAdded = whenLegalYear !== null && whenLegalYear <= year;
console.log("Symbol Added:", symbolAdded);
if (symbolAdded) {
const [x, y] = path.centroid(d);
const countryArea = path.area(d);
const symbolSize = Math.log(countryArea)*2;
console.log("Symbol Size:", symbolSize);
countryGroup.append("text")
.attr("class", "symbol")
.attr("x", x)
.attr("y", y)
.text("\u2726")
.attr("text-anchor", "middle")
.attr("alignment-baseline", "middle")
.style("font-size", `${symbolSize}px`)
.style("fill", "orange");
}
});
return svg.node();
};