Highcharts Demo Time line series

author(s): Gert Vaartjes

by mustapha mekhatria

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: '22 July 1951',
            label:'First dogs in space ',
            //description: 'First dogs in space ',
        }, {
        	date: 'Next date',
            label: 'Next event label',
            description: 'Description of second event.'
        },  {
        	date: 'Next date',
            label: 'Next event label',
            description: 'Description of second event.'
        },{
            date: 'Another date',
            label: 'Last event label',
            description: 'Description of third event.'
        }]
    }]

});