New to Kendo UI for AngularStart a free 30-day trial

Definition

Package:@progress/kendo-angular-progressbar

Selector:kendo-circularprogressbar

Export Name:Accessible in templates as #kendoCircularProgressBarInstance="kendoCircularProgressBar"

Syntax:

TS
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;
}

Inputs

animation

boolean

Specifies whether to play an animation when the value changes.

Default:

false

Puts the Circular ProgressBar in indeterminate state.

Default:

false

max

number

Sets the maximum value which the Circular ProgressBar can accept.

Default:

100

min

number

Sets the minimum value which the Circular ProgressBar can accept.

Default:

0

opacity

number

Sets the opacity of the value arc.

Default:

1

Configures the pointer color. You can set it to a single color string or customize it per progress stages.

value

number

Sets the default value of the Circular ProgressBar between min and max.

Default:

0

Events

Fires when the animation that indicates the latest value change completes.