CircularProgressBarComponent
Represents the Kendo UI Circular ProgressBar component for Angular.
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<kendo-circularprogressbar
[value]="currentValue"
[max]="100"
[animation]="true">
</kendo-circularprogressbar>
`
})
export class AppComponent {
public currentValue: number = 65;
}
Selector
kendo-circularprogressbar
Export Name
Accessible in templates as #kendoCircularProgressBarInstance="kendoCircularProgressBar"
Inputs
Name | Type | Default | Description |
---|---|---|---|
animation |
|
|
Specifies whether to play an animation when the value changes. |
indeterminate |
|
|
Puts the Circular ProgressBar in indeterminate state. |
max |
|
|
Sets the maximum value which the Circular ProgressBar can accept. |
min |
|
|
Sets the minimum value which the Circular ProgressBar can accept. |
opacity |
|
|
Sets the opacity of the value arc. |
progressColor |
|
Configures the pointer color. You can set it to a single color string or customize it per progress stages. | |
value |
|
|
Sets the default value of the Circular ProgressBar between |
Events
Name | Type | Description |
---|---|---|
animationEnd |
|
Fires when the animation that indicates the latest value change completes. |