COLLEGE DASHBOARD

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

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'bar'
    },
    credits: {
                enabled: false
            },
            exporting: { 
            	enabled: false
             },
    title: {
        text: ''
    },
    xAxis: {
        categories: ['IT', 'CSE', 'ECE', 'MECH','CIVIL', 'EEE']
    },
    yAxis: {
        min: 0,
        title: {
            text: ''
        }
    },
    legend: {
        reversed: true
    },
    plotOptions: {
        series: {
            stacking: 'percent'
        }
    },
    series: [{
        name: 'male',
        color:'#a7bee2',
        data: [50, 30, 40, 70, 60]
    }, {
        name: 'female',
        data: [50, 70, 60, 30, 40]
    }]
});