I have some rendering problems with svg circular progressbar on retina and non-retina display. I tried to use another plugins, but it's the same problems. All plugins created distorted, jagged lines.
Zoomed screenshot from retina: you can see here the red lines around the gray line zoomed image
I found one interesting thing, if i change the order of colors: first- grey, then (on top) - red, it will be more smooth circles, not so jagged.
But in the project i need the order of colors like in example:
Part of code
var circle = new ProgressBar.Circle('.js_timer', {
color: '#ccc',
trailColor: '#e31e24',
strokeWidth: 6,
trailWidth: 6,
duration: 1500,
easing: 'easeInOut',
text: {
value: null
}
});
circle.animate(0.7);
Full example: http://jsfiddle.net/ouwumbu0/14/
Thanks for the help!