Student Landing

author(s): Kondal

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: 'bar'
    },
    title: {
        text: ''
    },
     credits: {
		 enabled: false
		},
     exporting: { 
            	enabled: false
             },
    xAxis: {
        categories: ['sectionA-', 'SectionB-', 'sectionC-', 'sectionD-']
    },
    yAxis: {
    labels:{
			enabled: false
		},
        min: 0,
        title: {
            text: ''
        },
        stackLabels: {
            enabled: true,
            style: {
                fontWeight: 'bold',
            }
        }
    },
  
    tooltip: {
        headerFormat: '<b>{point.x}</b><br/>',
        pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
    },
    plotOptions: {
        bar: {
            stacking: 'normal',
            dataLabels: {
                enabled: true,
            }
        }
    },
    series: [{
    showInLegend: false, 
        name: '',
        showinlegends:false,
        data: [5, 3, 4, 17],
        color: '#5bc7ff'
    }, {
    showInLegend: false, 
        name: '',
        data: [2, 2, 3, 2],
        color: '#ccc'
    }]
});