Frappe Gantt

**A modern, configurable, Gantt library for the web.** ![GitHub release (latest)](https://img.shields.io/github/v/release/frappe/gantt) license
![Hero Image](.github/hero_image.png) ## Frappe Gantt Gantt charts are bar charts that visually illustrate a project's tasks, schedule, and dependencies. With Frappe Gantt, you can build beautiful, customizable, Gantt charts with ease. You can use it anywhere from hobby projects to tracking the goals of your team at the worksplace. [ERPNext](https://erpnext.com/) uses Frappe Gantt. ### Motivation I needed a Gantt View for ERPNext. Surprisingly, I couldn't find a visually appealing Gantt library that was open source - so I decided to build it. Initially, the design was heavily inspired by Google Gantt and DHTMLX. ### Key Features - **Customizable Views**: customize the timeline based on various time periods - day, hour, or year, you have it. You can also create your own views. - **Ignore Periods**: exclude weekends and other holidays from your tasks' progress calculation. - **Configure Anything**: spacing, edit access, labels, you can control it all. Change both the style and functionality to meet your needs. - **Multi-lingual Support**: suitable for companies with an international base. ## Usage Install with: ```bash npm install frappe-gantt ``` Include it in your HTML: ```html ``` Or from the CDN: ```html ``` Star using Gantt: ```js let tasks = [ { id: '1', name: 'Redesign website', start: '2016-12-28', end: '2016-12-31', progress: 20 }, ... ] let gantt = new Gantt("#gantt", tasks); ``` ## Development Setup If you want to contribute enhancements or fixes: 1. Clone this repo. 2. `cd` into project directory. 3. Run `pnpm i` to install dependencies. 4. `pnpm run build` to build files - or `pnpm run build-dev` to build and watch for changes. 5. Open `index.html` in your browser. 6. Make your code changes and test them.

Frappe Technologies