Skip to content

pawaranand/gantt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gantt

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

image

####View the demo here.

###Usage Include it in your html:

<script src="moment.min.js"></script>
<script src="snap.svg-min.js"></script>
<script src="frappe-gantt.min.js"></script>
<link href="frappe-gantt.css"></script>

And start hacking:

var gantt = new Gantt({
  parent_selector: "#gantt",
  tasks: [
    {
      start: "2016-10-04",
      end: "2016-10-10",
      name: "Explore ERPNext",
      id: 0,
      progress: 30
    },
    ...
  ],
  date_format: "YYYY-MM-DD"
});
gantt.render();

If you want to contribute:

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

Project maintained by frappe

About

Gantt View for ERPNext

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 89.7%
  • CSS 6.1%
  • HTML 4.2%