KENDO_PIVOTGRID
Constant
Use the KENDO_PIVOTGRID utility array to add all @progress/kendo-angular-pivotgrid-related components and directives to a standalone Angular component.
Definition
Package:@progress/kendo-angular-pivotgrid
Syntax:
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 { }