{
svg.attr('width', width)
const path = svg.selectAll('path').attr('stroke', 'red').attr('fill', 'none')
const circles = svg.selectAll('circle').attr('fill', 'red')
const ellipse = svg.selectAll('ellipse').attr('fill', 'red')
const progressPath = svg.select('#progress-path').attr('stroke-width', 10)
.attr("stroke-dasharray", `${dashArray} ${dashArray}`).attr('stroke-dashoffset', dashOffset)
return svg.node()
}