SSU Continuing
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
Highcharts.chart('container', {
chart: {
type: 'line'
},
title: {
text: 'SSU Continuing Students by Cohort, 2006-2010'
},
subtitle: {
text: ''
},
xAxis: {
categories: ['2006', '2007', '2008', '2009', '2010']
},
yAxis: {
title: {
text: 'Percentage of Students'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Continuing Students',
data: [2.8, 3.5, 2.6, 2.5, 3.5]
}]
});