Currently, I am facing a challenge where I need to create a circle using multiple points that are very close together. For reference, you can view the jsfiddle link provided below:
<path style="" stroke-dasharray="10 5" fill="#0000ff" stroke="#0000ff" d="M181.8181818181818,225L181.8181818181818,225M181.8181818181818,225L181.7933822865362....
My current approach involves using the 'path' element for this task. However, when applying the stroke-dasharray style, the points being too close results in unexpected rendering of the dashes as seen in the example.
If anyone has suggestions or ideas on how I could achieve the desired effect in this scenario, I would greatly appreciate it!