forked from dk8996's block: D3.js Gantt Chart, example 3
xxxxxxxxxx
<html>
<head>
<title>Gantt Chart Example 3</title>
<link type="text/css" href="https://mbostock.github.io/d3/style.css" rel="stylesheet" />
<link type="text/css" href="example.css" rel="stylesheet" />
</head>
<body>
<button type="button" onclick="addTask()">Add Task</button>
<button type="button" onclick="removeTask()">Remove Task</button>
<button type="button" onclick="changeTimeDomain('1hr')">1 HR</button>
<button type="button" onclick="changeTimeDomain('3hr')">3 HR</button>
<button type="button" onclick="changeTimeDomain('6hr')">6 HR</button>
<button type="button" onclick="changeTimeDomain('1day')">1 DAY</button>
<button type="button" onclick="changeTimeDomain('1week')">1 WEEK</button>
</body>
</html>
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-time.v1.min.js"></script>
<script type="text/javascript" src="https://d3js.org/d3-time-format.min.js"></script>
<script type="text/javascript" src="gantt.js"></script>
<script type="text/javascript" src="example3.js"></script>
Modified http://d3js.org/d3.v4.min.js to a secure url
Modified http://d3js.org/d3-time-format.min.js to a secure url
https://d3js.org/d3.v4.min.js
https://d3js.org/d3-time.v1.min.js
https://d3js.org/d3-time-format.min.js