jetsum_dhtmlx_gantt
Version:
An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.
16 lines (15 loc) • 473 B
HTML
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Fixed size gantt</title>
<script src="../../codebase/dhtmlxgantt.js?v=7.1.9"></script>
<link rel="stylesheet" href="../../codebase/dhtmlxgantt.css?v=7.1.9">
<script src="../common/testdata.js?v=7.1.9"></script>
</head>
<body>
<div id="gantt_here" style='width:1020px; height:400px;'></div>
<script>
gantt.init("gantt_here");
gantt.parse(demo_tasks);
</script>
</body>