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', {
        chart: {
            type: 'line'
        },
        title: {
            text: 'Total Undergraduate and Postbaccalaureate Enrollment, 2012-2016'
        },
        subtitle: {
            text: ''
        },
        xAxis: {
            categories: ['2012', '2013', '2014', '2015', '2016']
        },
        yAxis: {
            title: {
                text: 'Number of Students'
            }
        },
        plotOptions: {
            line: {
                dataLabels: {
                    enabled: true
                },
                enableMouseTracking: false
            }
        },
        series: [{
            name: 'Undergraduate students',
            data: [8122, 8351, 8477, 8615, 8606]
        }, {
            name: 'Postbaccalaureate students',
            data: [899, 769, 813, 793, 717]
        }]
    });
});