edi9999 / gant-planning

D3js based planning editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gant-planning

D3js based planning editor.

Features:

  • Drag and drop to move/resize phases
  • Click to edit a phase description

Demo Page

Demo Image

HTML:

<svg id="demo"></svg>

JS:

var planning=gantplanning
	.createPlanning()
	.fill([
		{"description":"First Phase","start":0,"end":2},
		{"description":"Second Phase","start":3,"end":6}
	])
	.attachTo(document.getElementById('demo'))
	.draw();

About

D3js based planning editor

License:MIT License


Languages

Language:JavaScript 91.1%Language:HTML 6.0%Language:CSS 2.8%