UGRD/PBAC enrollment 12-16

by Kathryn Atwood

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

$(function () {
    Highcharts.chart('container', {
        title: {
            text: 'Total Undergraduate and Postbaccalaureate Enrollment, 2012-2016',
            x: -20 //center
        },
        subtitle: {
            text: '',
            x: -20
        },
        xAxis: {
            categories: ['2012', '2013', '2014', '2015', '2016']
        },
        yAxis: {
            title: {
                text: 'Number of Students'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            valueSuffix: ''
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'middle',
            borderWidth: 0
        },
        series: [{
            name: 'Undergraduate students',
            data: [8122, 8351, 8477, 8615, 8606]
        }, {
            name: 'Postbaccalaureate students',
            data: [899, 769, 813, 793, 717]
        }]
    });
});