Fatality_chart = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
svg.append("g").call(xAxis);
svg.append("g").call(yAxis);
svg.append("g").call(grid);
svg.append("g").call(annotations);
svg.append("g").call(legends);
function onMouseOver(selected) {
d3.select("#p-circles").selectAll("circle").attr("fill-opacity", 0.2).attr("stroke-opacity", 0.2);
d3.select("#country_labels").selectAll("text").attr("fill-opacity", 0.2);
d3.select("#cfr_labels").selectAll("text").attr("fill-opacity", 0);
d3.select(".shade").attr("fill-opacity", 0.1);
const selected_circle = d3.select(this);
const country_code = selected_circle.attr("class");
const cfr_labels = (selected.deaths/selected.confirmed*100).toFixed(1);
selected_circle.attr("fill-opacity", 1.0);
const temp_path = svg.append("g").attr("id", "temp-path").style("pointer-events", "none")
.selectAll("path")
.data(data.filter(
d => d.country_code === country_code)
).join("path").attr("class", `${country_code}`)
.attr("stroke", d => color(d.region)).attr("fill", "none")
.attr("stroke-opacity", 1).attr("stroke-width", 2)
.attr("d", d => country_trajectory(d.country_code));
const temp_circles = svg.append("g").attr("id", "temp-circles").style("pointer-events", "none")
.selectAll("circle").data(dataOfCountry_new(country_code)).join("circle")
.attr("fill", selected_circle.attr("fill"))
.attr("fill-opacity", 1)
.attr("stroke", selected_circle.attr("fill")).attr("stroke-opacity", 1)
.attr("cx", d => x(d.confirmed)).attr("cy", d => y(d.deaths)).attr("r", 2);
const temp_label = svg.append("text").attr("id", "temp-label").style("pointer-events", "none")
.text(country_code_to_name(country_code) + ": " + cfr_labels + "%").attr("font-size", 50)
.style("text-anchor", "middle")
.attr("x", selected_circle.attr("cx") - 60).attr("y", selected_circle.attr("cy") - 50)
.attr("font-style", "bold")
.attr("font-family", "Helvetica, sans-serif");
}
function onMouseMove() {
}
function onMouseOut() {
d3.select("#p-circles").selectAll("circle").attr("fill-opacity", 0.5).attr("stroke-opacity", 0.5);
d3.select("#country_labels").selectAll("text").attr("fill-opacity", 1.0);
d3.select("#cfr_labels").selectAll("text").attr("fill-opacity", 0);
d3.select(this).attr("fill-opacity", 0.5);
d3.select(".shade").attr("fill-opacity", 0.2);
d3.select("#temp-circles").remove();
d3.select("#temp-label").remove();
d3.select("#temp-path").remove();
}
const country_labels = svg.append("g").attr("id", "country_labels").selectAll("text")
.data(dataAt(today).filter(d => d.population > 1e7), d => d.country)
.join("text");
const p_circles = svg.append("g").attr("id", "p-circles")
.selectAll("circle").data(dataAt(today), d => d.country).join("circle");
const c_circles = svg.append("g").attr("id", "c-circles")
.selectAll("circle").data(dataAt(today), d=>d.country).join("circle");
const d_circles = svg.append("g").attr("id", "d-circles")
.selectAll("circle").data(dataAt(today), d => d.country).join("circle");
const cfr_labels = svg.append("g").attr("id", "cfr_labels").selectAll("text")
.data(dataAt(today).filter(d => d.deaths > 5), d => d.country)
.join("text");
return Object.assign(svg.node(), {
update(data) {
if (radius_type == 'population') {
p_circles.data(data, d => d.country)
.attr("stroke", "black").attr("fill", d => color(d.region)).attr("fill-opacity", 0.5)
.attr("cx", d => x(d.confirmed)).attr("cy", d => y(d.deaths)).attr("r", d => radius(d.population))
.attr("class", d => `${d.country_code}`)
.on("mouseover", onMouseOver)
.on("mouseout", onMouseOut);
};
c_circles.data(data, d => d.country)
.attr("fill", "black").attr("fill-opacity", 0.5)
.attr("cx", d => x(d.confirmed)).attr("cy", d => y(d.deaths)).attr("r", d => radius(d.confirmed));
d_circles.data(data, d => d.country)
.attr("fill", "black").attr("fill-opacity", 0.75)
.attr("cx", d => x(d.confirmed)).attr("cy", d => y(d.deaths)).attr("r", d => radius(d.deaths));
country_labels.data(data, d => d.country)
.text(d => d.country)
.attr("font-size", 12)
.style("text-anchor", "middle")
.attr("x", d => x(d.confirmed))
.attr("y", d => y(d.deaths) - radius(d[radius_type]) - 2);
cfr_labels.data(data, d => d.country)
.attr("font-size", 9)
.attr("fill-opacity", 0)
.style("text-anchor", "start")
.text(d => 5)
.text(d => (d.deaths/d.confirmed*100).toFixed(1) + "%")
.attr("x", d => x(d.confirmed) + radius(d[radius_type]) + 2)
.attr("y", d => y(d.deaths));
}
});
}