0.3.5 • Published 8 years ago
ngx-gantt v0.3.5
ngx-gantt - Gantt chart for Angular 5
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import the module
import { GanttModule } from 'ngx-gantt';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Import the Gantt module
GanttModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }<!-- You can now use the gantt-component in templates like this: -->
<h1>
{{title}}
</h1>
<gantt-component></gantt-component>Development
To generate all *.js, *.d.ts and *.metadata.json files:
$ yarn buildTo lint all *.ts files:
$ yarn run lintLicense
MIT © niikoo
Based on angular4-gantt by joerg.wiesmann