Trying to generate a piechart in SVG. Works fine in Chrome, but it doesn't work in Firefox. Any ideas? The slice is 35% of the pie. Added PI to calculate the slice. I think I've done everything correctly. Tried latest Firefox in both Mac and Windows. Same result. Slice doesn't show up. Had to add calc() to do the right math.
<svg height="20" width="20" viewBox="0 0 20 20" style="width: 500px; height: auto;">
<circle r="10" cx="10" cy="10" fill="#F2FBFF" />
<circle r="5" cx="10" cy="10" fill="transparent" stroke="#21BAFF" stroke-width="10" stroke-dasharray="calc(35 * 31.42 / 100) 31.42" transform="rotate(-90) translate(-20)" />
</svg>