Html – How to make semi donut from donut chart on svg&css?
I have donut which is made in svg. I want to upgrade it to semi donut somehow. .donut-ring { stroke: #EBEBEB; } .donut-segment-2 { stroke: green; animation: donut 1s; } @keyframes donut { 0% { stroke-dasharray: 0, 100; } 100%…