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/data.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.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" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

// Create the chart
Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: ' '
    },
    xAxis: {
        type: 'category',
        labels: {rotation: -45 }
    },
    yAxis: {
        title: {
            text: ' '
        }

    },
    legend: {
        enabled: false
    },
    plotOptions: {
        series: {
            borderWidth: 0
        }
    },

    "series": [
        {
            "name": "Browsers",
            "colorByPoint": true,
            "data": [
                {
                    "name": "Paul OLeary",
                    "y": 188
                },
                {
                    "name": "Janett Donovan",
                    "y": 164
                },
                {
                    "name": "William Davis",
                    "y": 208
                },
                {
                    "name": "Alice Jenkins",
                    "y": 192
                },
                {
                    "name": "John Doe",
                    "y": 142
                },
                {
                    "name": "Jane Doe",
                    "y": 212
                },
                {
                    "name": "Paul Brown",
                    "y": 204
                }
            ]
        }
    ]
    
});