I'm trying to create a partial circle with dashed border but I can't find out how to achive that.
For instance, I want to create something like this using SVG
I know how to create both dashed border and a partial circle separately by using "stroke-dasharray". But I have no idea how to combine them.
For instance,
partial cicle
<svg viewBox="0 0 320 320">
<path
attr.stroke-dasharray="{{stroke_lenth}} {{circumference}}"
d="M160 10
a 150 150 0 0 1 0 300
a 150 150 0 0 1 0 -300"
/>
</svg>