New to Kendo UI for Angular? Start a free 30-day trial
KENDO_COLORGRADIENT
Use the KENDO_COLORGRADIENT
utility array to add all ColorGradient-related components and directives to a standalone Angular component.
typescript
import { KENDO_COLORGRADIENT } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_COLORGRADIENT],
template: `<kendo-colorgradient></kendo-colorgradient>`
})
export class MyComponent {}