svg`<svg id = "wheel" width=${width} height=${height} viewBox= '${-width * scale/2} ${-height * scale/2} ${width * scale} ${height * scale}'>
<defs>
<linearGradient id="myGradient" gradientTransform="rotate(90)">
<stop offset="50%" stop-color="gold" />
<stop offset="65%" stop-color="red" />
</linearGradient>
</defs>
${(() => {
const paths = []
for(let i = 0; i <= maxNumBlobs; i ++) {
paths.unshift(`<path d = ${radarLine(data[i])} fill="url(#myGradient)" stroke = "white" stroke-width = "0"/>`)
}
return paths.join('')
})()}
</svg>`