Skip to content
/ gantt Public
forked from frappe/gantt

๐Ÿ“Š ๐Ÿ—‚ ๐Ÿ—“ Open Source Javascript Gantt

License

Notifications You must be signed in to change notification settings

ZeroHsu/gantt

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

40 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Frappรฉ Gantt

A simple, interactive, modern gantt chart library for the web

image

View the demo here.

Install

npm install frappe-gantt

Usage

Include it in your html:

<script src="frappe-gantt.min.js"></script>

And start hacking:

var tasks = [
  {
    id: 'Task 1',
    name: 'Redesign website',
    start: '2016-12-28',
    end: '2016-12-31',
    progress: 20,
    dependencies: 'Task 2, Task 3',
    custom_class: 'bar-milestone' // optional
  },
  ...
]
var gantt = new Gantt("#gantt", tasks);

If you want to contribute:

  1. Clone this repo.
  2. cd into project directory
  3. npm install
  4. npm run dev

License: MIT


Project maintained by frappe

About

๐Ÿ“Š ๐Ÿ—‚ ๐Ÿ—“ Open Source Javascript Gantt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.8%
  • CSS 5.7%
  • HTML 5.5%