kottenator/jquery-circle-progress

Issue with progress

Closed this issue · 3 comments

Hey,

Great plug-in.

Just an issue with the progress...it always goes to 100% rather than the value specified. Not sure if this is the intended functionality, but I'd expect progress to stop at the value specified. In this case 75%

$('.second.circle').circleProgress({
value: 0.75
}).on('circle-animation-progress', function(event, progress) {
$(this).find('strong').html(parseInt(100 * progress) + '%');
});

Thanks!

Thanks for the nice words!

About your request - it's already implemented. Try next:

$('.second.circle').circleProgress({
    value: 0.75
}).on('circle-animation-progress', function(event, progress, stepValue) {
    $(this).find('strong').html(parseInt(100 * stepValue) + '%');
});

Hey!

I was just about to reply…I noticed the stepValue in another example :)

Great work!

Take care,
Dan

Had the same issue. The below fixed the problem.

jQuery(classname).circleProgress({
  value: val,
  thickness:3,
  fill: {
    gradient: ["#000", "#f1f1f1"]
  }
}).on('circle-animation-progress', function(event, progress,stepValue) {
  jQuery(this).find('strong').html(Math.round(100 * stepValue) + '<i>%</i>');
});