New to Kendo UI for Angular? Start a free 30-day trial
KENDO_PIVOTGRID
Use the KENDO_PIVOTGRID
utility array to add all @progress/kendo-angular-pivotgrid
-related components and directives to a standalone Angular component.
ts
import { Component } from '@angular/core';
import { KENDO_PIVOTGRID } from '@progress/kendo-angular-pivotgrid';
@Component({
standalone: true,
imports: [KENDO_PIVOTGRID],
template: `
<kendo-pivotgrid [data]="data" ...>
</kendo-pivotgrid>
`
})
export class AppComponent { }