New to Kendo UI for Angular? Start a free 30-day trial
ProgressBarAnimation
Represents the settings of the animation which indicates the progress status of the ProgressBar.
ts
@Component({
selector: 'my-app',
template: `
<kendo-progressbar
[value]="value"
[animation]="{duration: duration}">
</kendo-progressbar>
`
})
class AppComponent {
public value = 50;
public duration = 1000;
}
Name | Type | Default | Description |
---|---|---|---|
duration |
|
The duration of the animation in milliseconds.
Defaults to |