A modern and powerful gantt component for Angular
$ npm i @worktile/gantt html2canvas --save
# or
$ yarn add @worktile/gantt html2canvasimport { NgModule } from '@angular/core';
import { NgxGanttModule } from '@worktile/gantt';
@NgModule({
  ...
  imports: [ NgxGanttModule, ... ]
  ...
})
export class AppModule {
}{
  "styles": ["node_modules/@worktile/gantt/styles/index.scss"]
}@use '@worktile/gantt/styles/index.scss';component.html
<ngx-gantt #gantt [items]="items">
  <ngx-gantt-table>
    <ngx-gantt-column name="Title" width="300px">
      <ng-template #cell let-item="item"> {{ item.title }} </ng-template>
    </ngx-gantt-column>
  </ngx-gantt-table>
</ngx-gantt>component.ts
@Component({
  selector: 'app-gantt-example',
  templateUrl: './gantt.component.html'
})
export class AppGanttExampleComponent {
  items: GanttItem[] = [
    { id: '000000', title: 'Task 0', start: 1627729997, end: 1628421197 },
    { id: '000001', title: 'Task 1', start: 1617361997, end: 1625483597 }
  ];
  constructor() {}
}See Getting Started for more details.
$ git clone git@github.com:worktile/ngx-gantt.git
$ cd ngx-gantt
$ npm ci
$ npm run start- virtual scrolling
Thanks goes to these wonderful people (emoji key):
| Walker 💬 💻 🎨 📖 🚇 🚧 📆 👀 | zhangwen 💻 | cmq 💻 | 
This project follows the all-contributors specification. Contributions of any kind welcome!