Highcharts Demo

author(s): Torstein Hønsi

by Kondal Durgam

HTML

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: 'MOBILIZATION TRACK RECORD'
    },
    credits: {
                enabled: false
            },
            exporting: { 
            	enabled: false
             },
    xAxis: {
        type:'categery'
    },
    yAxis: [{
        min: 0,
        title: {
            text: ''
        }
    },],
    
    plotOptions: {
        series: {
            borderWidth: 0,
            dataLabels: {
                enabled: true
            }
        }
    },
    series: [{
        name: 'Registered',
        showInLegend: false,
        color: '#6acdf4',
        data: [18000]

    }, {
        name: ' Shortlisted',
        showInLegend: false,
        color: '#4daee1',
        data: [12000]

    }, {
        name: 'Confirmed',
        showInLegend: false,
        color: '#327fc3',
        data: [7500]

    }, {
        name: 'Attended',
        showInLegend: false,
        color: '#2f5da8',
        data: [4500]
    },
     {
        name: 'Completed',
        showInLegend: false,
        color: '#2f5da8',
        data: [4200]

    },{
        name: 'Passed',
        showInLegend: false,
        color: '#4daee1',
        data: [4000]

    },{
        name: 'Employed',
        showInLegend: false,
        color: '#2cc3de',
        data: [3800]

    }]
});