Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 612 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 612 Bytes

Simple React Gantt Diagram

Many thanks to http://taitems.github.io/jQuery.Gantt/

Demo

react_gantt

demo based React Static Boilerplate

Use

import Gantt from '../components/react_gantt';
...

return (<Gantt {...{
  start: new Date(1970, 0, 1),
  stop: new Date(),
  data:[  {
    "name": "Sprint 0",
    "desc": "Analysis",
    "values": [{
      "from": 1320192000000,
      "to": 1322401600000,
      "label": "Requirement Gathering",
      "customClass": "ganttRed"
    }]
    ]
  }} 
/>);