manumaticx / circularprogress

Circular Progressbar Widget for Alloy
87 stars 19 forks source link

How to add "percentage sign"? #10

Closed kodamirmo closed 9 years ago

kodamirmo commented 9 years ago

Hi, thanks for your library, im trying to add '%' sign to the label, but i haven't been able to do it. My code:

$.progress.animate({
    value: 78,
    duration: 500,
    formatValue: function(v){return v + '%';},
    showText: true
});

Thanks in advance.

manumaticx commented 9 years ago

Hi. I've just updated the widget to v0.3.3 - now you can do this:

$.progress.formatValue = function(val){ return val + '%'; };