chart = {
const $svg = d3.create("svg")
.attr("viewBox", [0, 0, 975, 610]);
const $mapLegendG= $svg
.append("g")
.attr('class','map-legend')
$mapLegendG
.attr("transform", "translate(610,20)")
.append(() => legend({color, title: data.title, width: 260}));
const $countyPaths = $svg.append("g")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.join("path")
$countyPaths
.attr("fill", d => color(data.get(d.id)))
.attr("d", path)
.append("title")
.text(d => `${d.properties.name}, ${states.get(d.id.slice(0, 2)).name}
${format(data.get(d.id))}`);
$countyPaths.on('click',d=>console.log(d.id))
$svg.append("path")
.datum(topojson.mesh(us, us.objects.states, (a, b) => a !== b))
.attr("fill", "none")
.attr("stroke", "white")
.attr("stroke-linejoin", "round")
.attr("d", path);
return $svg.node();
}