Created
February 29, 2020 23:53
-
-
Save naosim/d3b0a8ec94fcfb54386da7fa9b5539ac to your computer and use it in GitHub Desktop.
20200301 frappe-ganttつかってみた
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/frappe-gantt/0.3.0/frappe-gantt.min.css"></link> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/snap.svg/0.5.1/snap.svg-min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/frappe-gantt/0.3.0/frappe-gantt.min.js"></script> | |
<svg id="gantt"></svg> | |
<script> | |
var tasks = [ | |
{ | |
id: 'Task 1', | |
name: 'Redesign website', | |
start: '2016-12-28', | |
end: '2016-12-31', | |
progress: 20 | |
} | |
] | |
var gantt = new Gantt("#gantt", tasks); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment