chart = {
const width = 960;
const height = 600;
const path = d3.geoPath();
let format = d => { return "$" + d3.format(",.0f")(d); }
const svg = d3.select(DOM.svg(width, height))
.style("width", "100%")
.style("height", "auto")
.attr("fill", "#E0E2E3");
svg.append("g")
.attr("transform", "translate(600,40)")
.call(legend);
svg.append("g")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.join("path")
.attr("fill", d => color(data.get(d.id)))
.attr("d", path)
.attr("stroke", "#CACBCC")
.append("title")
.text(d => `${d.properties.name} County, ${states.get(d.id.slice(0, 2)).name}
${format(data.get(d.id))}`);
svg.append("path")
.datum(topojson.mesh(us, us.objects.states, (a, b) => a !== b))
.attr("fill", "none")
.attr("stroke", "#9FA0A1")
.attr("stroke-linejoin", "round")
.attr("d", path);
return svg.node();
}