Highcharts Demo Time line series
author(s):
Gert Vaartjes
by Gert Vaartjes
HTML
<script src="https://github.highcharts.com/master/highcharts.js"></script>
<script src="https://github.highcharts.com/master/modules/timeline.js"></script>
<div id="container"></div>
CSS
#container {
min-width: 320px;
max-width: 800px;
margin: 0 auto;
}
JavaScript
Highcharts.chart('container', {
chart: {
type: 'timeline'
},
series: [{
data: [{
date: 'Some date',
label: 'Event label',
description: 'Description of this event.',
dataLabels: {
color: '#78f',
borderColor: 'blue',
backgroundColor: '#444',
connectorWidth: 2,
connectorColor: 'blue',
style: {
textOutline: 0
}
}
}, {
date: 'Next date',
label: 'Next event label',
description: 'Description of second event.',
marker: {
fillColor: 'pink', // chnage the default color to pink
lineWidth: 4,
lineColor: 'white',
}
}, {
date: 'Another date',
label: 'Last event label',
description: 'Description of third event.'
}]
}]
});