Highcharts Demo

author(s): Torstein Hønsi

by Kondal Durgam

HTML

<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: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: 'Selection Process'
    },
   
    xAxis: {
        categories: [
            'Male',
            'female'
        ]
    },
    yAxis: {
        title: {
            text: ''
        }
    },
    series: [{
        name: 'Process Plan In',
        color: 'rgba(165,170,217,1)',
        data: [450, 250]

    }, {
        name: 'Process  Actual In',
        color: 'rgba(126,86,134,.9)',
        data: [140, 90]

    }, {
        name: 'Process Plan Out',
        color: 'rgba(248,161,63,1)',
        data: [200,300]

    }, {
        name: 'Process Actual Out',
        color: 'rgba(186,60,61,.9)',
        data: [300,400]

    }]
});