SSU Unfinished rates
author(s):
Torstein Hønsi
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 Unfinished Rates by Cohort, 2006-2010'
},
subtitle: {
text: ''
},
xAxis: {
categories: ['2006', '2007', '2008', '2009', '2010']
},
yAxis: {
tickInterval: 4,
title: {
text: 'Percentage of Students'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Unfinished Rate',
data: [42.8, 43.8, 43.5, 40.1, 39.3]
}]
});