chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])
svg.append('g')
.selectAll('path')
.data(zuerichGeo.features)
.enter()
.append("path")
.attr("fill", d => colorScale(quantileAccessor(zoneDataAccessor(d))))
.attr("stroke-width", 0)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr("d", path)
svg.append('g')
.selectAll('text')
.data(sortedAllZonesSelection)
.enter()
.append("text")
.attr('text-anchor', 'end')
.attr('alignment-baseline', "middle")
.attr('font-size', fontSize)
.text(nameAccessor)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr('x', (width / 2 + pad) + width / 4 - textPad)
.attr('y', (_, i) => yScale(i) + yScale.bandwidth() / 2)
.attr('width', d => widthScale(quantileAccessor(d)))
.attr("height", yScale.bandwidth())
svg.append('g')
.selectAll('rect')
.data(sortedAllZonesSelection)
.enter()
.append("rect")
.attr("fill", d => colorScale(quantileAccessor(d)))
.attr("stroke-width", 0)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr('x', (width / 2 + pad) + width / 4 )
.attr('y', (_, i) => yScale(i))
.attr('width', d => widthScale(quantileAccessor(d)))
.attr("height", yScale.bandwidth())
return svg.node()
}