{
const svg = d3.create("svg").attr("width", width).attr("height", height);
svg
.append("g")
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(xAxis);
svg.append("g").attr("transform", `translate(${margin.left}, 0)`).call(yAxis);
const bubbles = svg
.selectAll("bubbles")
.data(data)
.enter()
.append("circle")
.attr("cx", (d) => xScale(d["Income per person"]))
.attr("cy", (d) => yScale(d["Life expectancy "]))
.attr("r", (d) => radiusScale(d.Population))
.attr("fill", (d) => findColors(d.region))
.style("fill-opacity", 0.74)
.attr("stroke", "#555")
.on("mousemove", function (event, d, index) {
toolTip
.style("display", "block")
.html(`<p>${d.name}<br>${d.Population}</p><div></div>`);
toolTip
.style(
"left",
event.pageX - d3.select(".toolTip").node().offsetWidth + "px"
)
.style("top", event.pageY - 52 + "px");
d3.select(this)
.style("stroke-width", 3)
.style("fill-opacity", 0.95);
})
.on("mouseout", function () {
toolTip.style("display", "none");
d3.select(this)
.style("stroke-width", 1)
.style("fill", (d) => findColors(d.region))
.style("fill-opacity", 0.74);
});
const toolTip = d3.select("body").append("div").attr("class", "toolTip");
getLegend(svg, "vertical", 18, 7, 5, domains.length);
return svg.node();
}