New to Kendo UI for AngularStart a free 30-day trial

GridModule

Defines the NgModule for the Grid component.

Use this module to import the Grid in your NgModule-based Angular application.

ts
import { NgModule } from '@angular/core';
import { GridModule } from '@progress/kendo-angular-grid';
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from './app.component';

@NgModule({
    declarations: [AppComponent],
    imports:      [BrowserModule, GridModule],
    bootstrap:    [AppComponent]
})
export class AppModule {}
Not finding the help you need?
Contact Support