JavaScript/jQuery CircularGauge - animation
Type:
To make your gauge "live", enable animation for it by setting the enabled option of the animation object to true. In this instance, the gauge indicators will appear in motion. In addition, within the animation object, you can set an appropriate easing mode using the easing option and specify how long the animation should run using the duration option.
easing
The animation easing mode specifies the speed at which the animation progresses at different points within the animation. The following values are available.
- easeOutCubic
The animation progresses according to the Ease-out cubic interpolation function - quickly at the beginning and slowly at the end of the animation process. - linear
The animation progresses at a constant pace.
Use the VizAnimationEasing
enum to specify this option when the widget is used as an ASP.NET MVC Control. This enum accepts the following values: EaseOutCubic
and Linear
.
Feedback