I'm trying to use the gauge object from Dashcode at my website project, so I've tried this line of code to make a simple test:
for (i=0;i<=50;i++)
{
document.getElementById("gauge").object.setValue(i);
}
The problem is that the pointer just jumps to the position I've set, but I want to do some growing animation instead of just jumping. How should I do to make it like those gauges that we see on sites, that looks real?