dumptyd / vue-css-donut-chart

Lightweight Vue component for drawing pure CSS donut charts
https://dumptyd.github.io/vue-css-donut-chart/
MIT License
128 stars 19 forks source link

using start-angle prop causes artifact to appear on chart #32

Open An-AngryBear opened 4 years ago

An-AngryBear commented 4 years ago

(using Chrome 83)

image As you can see in the upper right hand corner an artifact appears in the green section.

locally, my fix is to not use the start-angle prop, and instead override the .cdc class using translateZ

example: transform: translateZ(1px) rotate(200deg);

Seokky commented 4 years ago

I have the same issue, but i do not use start-angle prop

Seokky commented 4 years ago

@dumptyd I solved the problem by setting the 'cdc' element to a background color that matches the color of the category with the highest value

Feduch commented 3 years ago

I have the same issue