You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
100% pies were being drawn as a tiny sliver at 12-o'clock and nothing else. (Same as 0% ones)
I had good luck inserting "if (angle >= 360) angle = 359.5;" before line 30 in SvgCircleProgress.js. That's just before the "endAngle = ..." line. This added statement prevents the code from trying to draw all the way to 360 degrees, which appeared to be causing the missing pies.
Thanks for this simple and useful package!
The text was updated successfully, but these errors were encountered:
100% pies were being drawn as a tiny sliver at 12-o'clock and nothing else. (Same as 0% ones)
I had good luck inserting "if (angle >= 360) angle = 359.5;" before line 30 in SvgCircleProgress.js. That's just before the "endAngle = ..." line. This added statement prevents the code from trying to draw all the way to 360 degrees, which appeared to be causing the missing pies.
Thanks for this simple and useful package!
The text was updated successfully, but these errors were encountered: