New to Kendo UI for Angular? Start a free 30-day trial
KENDO_CIRCULARPROGRESSBAR
Use this utility array to access all CircularProgressbar-related components and directives in a standalone Angular component.
typescript
import { KENDO_CIRCULARPROGRESSBAR } from '@progress/kendo-angular-progressbar';
@Component({
standalone: true,
imports: [KENDO_CIRCULARPROGRESSBAR],
template: `<kendo-circularprogressbar [value]="75"></kendo-circularprogressbar>`,
})
export class MyComponent {}