From b32ac7d31848c5b340270edea03b247dfbf132d8 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 28 Dec 2016 12:55:58 +0530 Subject: [PATCH] added readme --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c36985f --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Frappé Gantt +A simple, interactive, modern gantt chart library for the web + +![image](https://cloud.githubusercontent.com/assets/9355208/19997551/5bc597f2-a28d-11e6-809a-4cfa5fdf96d2.png) + +####View the demo [here](https://frappe.github.io/gantt). + +###Install +``` +npm install frappe-gantt +``` + +###Usage +Include it in your html: +``` + +``` + +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](https://github.com/frappe) \ No newline at end of file