Top5 employers highchart

by Angelos Chaidas

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<div class="chart"></div>

CSS

.chart {
    width:556px;
    height:184px;
    background-color:#CCC;
}

JavaScript

$('.chart').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: ''
        },
        credits: {
            enabled: false
        },
        xAxis: {
            categories: [
                'Ferchau Engineering',
                'Pwc',
                'Deloitte',
                'Siemens',
                'M Plan'],
            crosshair: true
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Number of jobs'
            }
        },
        legend: {
            enabled: false
        },
        tooltip: {
            headerFormat: '{point.key}:<br/>',
            pointFormat: '<b>{point.y} jobs</b>',
            shared: true,
            useHTML: true
        },
        series: [{
            data: [8559, 1346, 1056, 1003, 978],
            color: '#279B37'
        }]
    });