SSU Grad by Cohort

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 Six-Year Graduation Rates by Cohort, 2006-2010'
    },
    subtitle: {
        text: ''
    },
    xAxis: {
        categories: ['2006', '2007', '2008', '2009', '2010']
    },
    yAxis: {
       tickInterval: 4,
        title: {
            text: 'Percentage of Graduates'
        }
    },
    plotOptions: {
        line: {
            dataLabels: {
                enabled: true
            },
            enableMouseTracking: false
        }
    },
    series: [{
        name: 'Graduation Rates',
        data: [54.5, 53.8, 55.1, 58.3, 60.9]
    }]
});