scatterplotWithVoronoiTooltips = {
const svg = d3.create("svg")
.style("font-family", "Work Sans, sans-serif")
.attr("viewBox", [0, 0, width, height]);
const exerciseColorMap = new Map([["Bike", "#8242a8"], ["Run", "#ff1493"], ["Walk", "#FFCE1E"]]);
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
svg.append("text")
.attr("transform", `translate(0, 0)`)
.attr("dy", "1em")
.attr("text-anchor", "start")
.style("fill", "#202630")
.style("font-size", 18)
.html("Exercise in April–May 2020");
svg.append("g")
.attr("class", "points")
.selectAll("circle")
.data(data.filter(d => d.y > 1))
.join("circle")
.attr("stroke-width", "3")
.attr("opacity", 0.7)
.attr("stroke", d => exerciseColorMap.get(d['typeOfExercise']))
.attr("fill", d => exerciseColorMap.get(d['typeOfExercise']))
.attr("transform", d => `translate(${x(d.x)},${y(d.y)})`)
.attr("r", 3);
const voronoi = d3.Delaunay
.from(data, d => x(d.x), d => y(d.y))
.voronoi([margin.left, margin.top, width - margin.right, height - margin.bottom]);
svg.append("g")
.attr("class", "voronoiWrapper")
.selectAll("path")
.data(data)
.join("path")
.attr("opacity", 0.5)
.attr("fill", "none")
.style("pointer-events", "all")
.attr("d", (d,i) => voronoi.renderCell(i))
.on("mouseover", (d, i) => {
if (d.y > 1) {
svg.append('g')
.attr("class", "tooltip")
.attr("transform", `translate(${x(d.x)},${y(d.y)})`)
.call(popover, `Amount: ${d.y.toLocaleString(undefined, {style: "decimal"})}
${d.x.toLocaleString(undefined, {month: "short", day: "numeric", year: "numeric"})}
${d.typeOfExercise}`)
}
})
.on("mouseout", () => svg.selectAll('.tooltip').remove());
return svg.node();
}