chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])
svg.append('g')
.append('rect')
.attr('width', width)
.attr('height', height)
.attr('x', 0)
.attr('y', 0)
.attr('fill', paper)
svg.append('g')
.append("path")
.attr("fill", 'none')
.attr("stroke", 'white')
.attr("stroke-width", 1)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr("d", path(topojson.feature(friuli, friuli.objects.friuli)))
return svg.node()
}