gantt/README.md
2016-12-28 12:59:35 +05:30

748 B

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.js"></script>

And start hacking:

var gantt = new Gantt(
  "#gantt",
  [
    {
      start: "2016-10-04", end: "2016-10-10",
      id: 0, name: "Explore ERPNext"
    },
    ...
  ]
});

If you want to contribute:

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

Project maintained by frappe