Raghavendra Kamath 5a03973e06 Update the readme to add new Gantt logo (#53)
* Update the readme to add new Gantt logo

* Update README.md
2018-02-17 23:55:15 +05:30
2018-02-17 23:47:31 +05:30
2018-02-17 23:47:31 +05:30
2018-02-17 23:40:58 +05:30
2018-02-17 23:40:58 +05:30
2018-02-17 23:40:58 +05:30
2017-01-28 15:37:55 +05:30
2018-02-17 23:40:58 +05:30
2018-02-17 23:40:58 +05:30
2016-12-29 11:56:54 +05:30
2018-02-17 23:40:58 +05:30
2018-02-17 23:40:58 +05:30
2018-02-17 23:40:58 +05:30

Frappe Gantt

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

View the demo »

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. yarn
  4. yarn run dev

License: MIT


Project maintained by frappe

Description
Open Source Javascript Gantt
Readme 7.4 MiB
Languages
JavaScript 72.6%
HTML 20%
CSS 7.4%