We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tried both variations below.
this one I can change the barColor but scaleLength will not update:
$('#pendingChart').data('easyPieChart').update(50); $('#pendingChart').data('easyPieChart').options['scaleLength'] = 2;
(which I cannot get animate to work either)
and this way it does not work either:
var $chart = $(".easy-pie-chart"); $chart.data('easyPieChart', null); $chart.easyPieChart({ easing: 'easeOutCirc', barColor: '#a57225', trackColor: '#f9f9f9', scaleColor: false, percent: 10, scaleLength: 5, lineCap: 'butt', lineWidth: 5, size: 50, animate: { duration: 2000, enabled: true }, onStep: function (from, to, percent) { $(this.el).find('.percent').text(Math.round(percent)); } });
The text was updated successfully, but these errors were encountered:
https://codepen.io/MarioPerini/pen/LaGrdR
Sorry, something went wrong.
No branches or pull requests
I have tried both variations below.
this one I can change the barColor but scaleLength will not update:
(which I cannot get animate to work either)
and this way it does not work either:
The text was updated successfully, but these errors were encountered: