gantt-chart
Version:
interactive gantt charts in node and the browser
29 lines (28 loc) • 466 B
HTML
<html>
<style>
body {
margin: 0px;
}
#chart {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 300px;
height: 100%;
}
#code {
position: absolute;
top: 0px;
bottom: 0px;
right: 0px;
width: 500px;
height: 100%;
}
</style>
<body>
<div id="chart"></div>
<textarea id="code"></textarea>
<script src="bundle.js"></script>
</body>
</html>