KENDO_PROGRESSBAR
Constant
Use this utility array to access all ProgressBar-related components and directives in a standalone Angular component.
Definition
Package:@progress/kendo-angular-progressbar
Syntax:
TS
import { KENDO_PROGRESSBAR } from '@progress/kendo-angular-progressbar';
@Component({
standalone: true,
imports: [KENDO_PROGRESSBAR],
template: `<kendo-progressbar [value]="75"></kendo-progressbar>`,
})
export class MyComponent {}