{"id":13808280,"url":"https://github.com/worktile/ngx-gantt","last_synced_at":"2025-04-08T12:03:04.811Z","repository":{"id":39872272,"uuid":"266069593","full_name":"worktile/ngx-gantt","owner":"worktile","description":"A modern and powerful gantt chart component for Angular","archived":false,"fork":false,"pushed_at":"2025-03-28T06:16:00.000Z","size":11533,"stargazers_count":265,"open_issues_count":22,"forks_count":81,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-01T11:01:50.585Z","etag":null,"topics":["angular","gantt","gantt-chart","gantt-chart-component","ganttchart","ngx-gantt"],"latest_commit_sha":null,"homepage":"http://gantt.ngnice.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/worktile.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-22T09:19:29.000Z","updated_at":"2025-03-28T06:16:02.000Z","dependencies_parsed_at":"2023-02-18T04:31:27.851Z","dependency_job_id":"61b20824-d8ae-44af-8416-42fb4dae66f1","html_url":"https://github.com/worktile/ngx-gantt","commit_stats":null,"previous_names":[],"tags_count":88,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/worktile%2Fngx-gantt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/worktile%2Fngx-gantt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/worktile%2Fngx-gantt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/worktile%2Fngx-gantt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/worktile","download_url":"https://codeload.github.com/worktile/ngx-gantt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247838421,"owners_count":21004578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","gantt","gantt-chart","gantt-chart-component","ganttchart","ngx-gantt"],"created_at":"2024-08-04T01:01:38.889Z","updated_at":"2025-04-08T12:03:04.793Z","avatar_url":"https://github.com/worktile.png","language":"TypeScript","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Charts"],"readme":"# ngx-gantt\n\n[![CircleCI](https://circleci.com/gh/worktile/ngx-gantt.svg?style=shield)](https://circleci.com/gh/worktile/ngx-gantt)\n[![Coverage Status][coveralls-image]][coveralls-url]\n[![npm (scoped)](https://img.shields.io/npm/v/@worktile/gantt?style=flat)](https://www.npmjs.com/package/@worktile/gantt)\n[![npm](https://img.shields.io/npm/dm/@worktile/gantt)](https://www.npmjs.com/package/@worktile/gantt)\n![npm bundle size (scoped)](https://img.shields.io/bundlephobia/min/@worktile/gantt)\n[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)\n\n[coveralls-image]: https://coveralls.io/repos/github/worktile/ngx-gantt/badge.svg?branch=master\n[coveralls-url]: https://coveralls.io/github/worktile/ngx-gantt\n\nA modern and powerful gantt component for Angular\n\n## Installation\n\n```bash\n$ npm i @worktile/gantt html2canvas --save\n# or\n$ yarn add @worktile/gantt html2canvas\n```\n\n## Demo\n\n[Try out our live demo](http://gantt.ngnice.com/)\n\n## Usage\n\n### 1. Import the NgxGanttModule to use into your app.module.ts\n\n```ts\nimport { NgModule } from '@angular/core';\nimport { NgxGanttModule } from '@worktile/gantt';\n\n@NgModule({\n  ...\n  imports: [ NgxGanttModule, ... ]\n  ...\n})\nexport class AppModule {\n\n}\n```\n\n### 2. Import style file in angular.json or import style in your style.scss\n\n```json\n{\n  \"styles\": [\"node_modules/@worktile/gantt/styles/index.scss\"]\n}\n```\n\n```scss\n@use '@worktile/gantt/styles/index.scss';\n```\n\n### 3. Using component\n\ncomponent.html\n\n```html\n\u003cngx-gantt #gantt [items]=\"items\"\u003e\n  \u003cngx-gantt-table\u003e\n    \u003cngx-gantt-column name=\"Title\" width=\"300px\"\u003e\n      \u003cng-template #cell let-item=\"item\"\u003e {{ item.title }} \u003c/ng-template\u003e\n    \u003c/ngx-gantt-column\u003e\n  \u003c/ngx-gantt-table\u003e\n\u003c/ngx-gantt\u003e\n```\n\ncomponent.ts\n\n```javascript\n@Component({\n  selector: 'app-gantt-example',\n  templateUrl: './gantt.component.html'\n})\nexport class AppGanttExampleComponent {\n  items: GanttItem[] = [\n    { id: '000000', title: 'Task 0', start: 1627729997, end: 1628421197 },\n    { id: '000001', title: 'Task 1', start: 1617361997, end: 1625483597 }\n  ];\n\n  constructor() {}\n}\n```\n\nSee [Getting Started](http://gantt.ngnice.com/guides/getting-started) for more details.\n\n## Development\n\n```bash\n$ git clone git@github.com:worktile/ngx-gantt.git\n$ cd ngx-gantt\n$ npm ci\n$ npm run start\n```\n\n## Roadmap\n\n- [ ] virtual scrolling\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/walkerkay\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/15701592?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eWalker\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#question-walkerkay\" title=\"Answering Questions\"\u003e💬\u003c/a\u003e \u003ca href=\"https://github.com/walkerkay/ngx-gantt/commits?author=walkerkay\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-walkerkay\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/walkerkay/ngx-gantt/commits?author=walkerkay\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#infra-walkerkay\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"#maintenance-walkerkay\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"#projectManagement-walkerkay\" title=\"Project Management\"\u003e📆\u003c/a\u003e \u003ca href=\"https://github.com/walkerkay/ngx-gantt/pulls?q=is%3Apr+reviewed-by%3Awalkerkay\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/HandsomeButterball\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/17664721?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ezhangwen\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/walkerkay/ngx-gantt/commits?author=HandsomeButterball\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/mengshuicmq\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/13193164?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ecmq\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/walkerkay/ngx-gantt/commits?author=mengshuicmq\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n## LICENSE\n\n[MIT License](https://github.com/worktile/ngx-gantt/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworktile%2Fngx-gantt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworktile%2Fngx-gantt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworktile%2Fngx-gantt/lists"}