Transferred Grad
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 Transferred and Graduated 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: 'Tranferred and Graduated Rate',
data: [23, 22.2, 21.3, 17.3, 11.8]
}]
});