Highcharts Demo

author(s): Torstein Hønsi

by lamarant

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/series-label.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>

<div id="container"></div>

CSS

#container {
	min-width: 310px;
	max-width: 800px;
	height: 400px;
	margin: 0 auto
}

JavaScript

Highcharts.chart('container', {

    title: {
        text: ' '
    },
chart: {
        type: 'column'
    },/*
		xAxis: {
        categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun']
    },*/
    yAxis: {
        title: {
            text: ''
        }
    },
    
    series: [{
        name: 'Al Jones',
        data: [72, 76, 86, 92, 82],
        color: 'black'
    }, {
        name: 'Janet Donovan',
        data: [70, 80, 80, 90, 90],
        color: 'blue'
    }, {
        name: 'Paul  OLeary',
        data: [74, 72, 92, 96, 74],
        color: 'orange'
    }]

});