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 Postbaccalaureate Enrollment 2012-2016'
},
subtitle: {
text: ''
},
xAxis: {
categories: ['2012', '2013', '2014', '2015', '2016']
},
yAxis: {
min: 400,
max: 1100,
tickInterval: 20,
title: {
text: 'Number of Students'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Postbaccalaureate students',
data: [899, 769, 813, 793, 717]
}]
});
});