New to Kendo UI for Angular? Start a free 30-day trial
KENDO_SCROLLVIEW
Use the KENDO_SCROLLVIEW
utility array to access all @progress/kendo-angular-scrollview
related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_SCROLLVIEW } from '@progress/kendo-angular-scrollview';
@Component({
standalone: true,
imports: [KENDO_SCROLLVIEW],
template: `<kendo-scrollview [data]="items"></kendo-scrollview>`
})
export class AppComponent {
public items = [
{ title: 'Flower' },
{ title: 'Mountain' },
{ title: 'Sky' }
];
}