Gantt Chart with Progress Indicator
author(s): Lars Cabrera
by YameenYasin
HTML
<script src="https://code.highcharts.com/gantt/highcharts-gantt.js"></script>
<div id="container"></div>
JavaScript
// THE CHART
let chart = Highcharts.ganttChart('container', {
yAxis: {
staticScale: 50
},
series: [{
data: [{
id: '1',
name: 'Start prototype',
start: Date.UTC(2014, 10, 18),
end: Date.UTC(2014, 10, 25),
}]
}]
})