New to Kendo UI for Angular? Start a free 30-day trial
GanttModule
Represents the NgModule
definition for the Gantt component.
Use this module to include the Gantt component in your NgModule-based application.
typescript
import { GanttModule } from '@progress/kendo-angular-gantt';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, GanttModule],
bootstrap: [AppComponent]
})
export class AppModule {}