1 <!DOCTYPE html> 2 <head> 3 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> 4 <title>Basic initialization</title> 5 <script src="../../codebase/dhtmlxgantt.js?v=6.0.7"></script> 6 <link rel="stylesheet" href="../../codebase/dhtmlxgantt.css?v=6.0.7"> 7 8 <script src="../common/testdata.js?v=6.0.7"></script> 9 <style> 10 html, body { 11 height: 100%; 12 padding: 0px; 13 margin: 0px; 14 overflow: hidden; 15 } 16 </style> 17 </head> 18 <body> 19 <div id="gantt_here" style='width:100%; height:100%;'></div> <!--展現甘特圖的元素--> 20 <script> 21 var tasks = { 22 data: [ 23 { 24 id: 1, text: "Project #2", start_date: "01-04-2018", duration: 6, order: 10, 25 progress: 0.4, open: true //open 爲true爲展開 false爲收起 26 }, 27 { 28 id: 2, text: "Task #2", start_date: "02-04-2018", duration: 2, order: 10, 29 progress: 0.6, parent: 1 30 }, 31 { 32 id: 3, text: "Task #3", start_date: "04-04-2018", duration: 2, order: 20, 33 progress: 0.6, parent: 1 34 }, 35 { 36 id: 4, text: "Task #4", start_date: "04-04-2018", duration: 2, order: 30, 37 progress: 0.4, parent: 1 38 }, 39 { 40 id: 5, text: "Task #5", start_date: "02-04-2018", duration: 1, order: 40, 41 progress: 0.8, parent: 1 42 } 43 //{ 44 // id: 5 任務惟一ID, text: "Task #5" 任務名稱, start_date: "02-04-2018" 任務的開始時間, duration: 1 任務的持續時間, order: 40, 45 // progress: 0.8 任務的完成百分比, parent: 1 父ID 46 //} 47 // 48 49 ], 50 links: [ 51 {id: 1, source: 1, target: 2, type: "1"},//id: 1 鏈接的惟一id, source: 鏈接的起點 1, target: 鏈接的終點 2, type: "1" 開始-開始 任務連線類型 52 {id: 2, source: 2, target: 3, type: "0"},//id: 2, source: 1, target: 2, type: "0" 結束-開始 任務連線類型 53 {id: 3, source: 3, target: 4, type: "2"},//id: 3, source: 1, target: 2, type: "2" 結束-結束 任務連線類型 54 {id: 4, source: 4, target: 5, type: "3"} //id: 4, source: 1, target: 2, type: "3" 開始-結束 任務連線類型 55 ] 56 }; 57 58 gantt.init("gantt_here");//初始化甘特圖 59 60 61 gantt.parse(tasks);//加載任務數據 62 63 </script> 64 </body>
運行效果以下:css
https://github.com/610152753/DHTMLX-Gantt-learn 開源資料能夠運行的文件。若有問題請加qq羣:472279213html