4/6 Year Grad Rate

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 () {
    $('#container').highcharts({
        title: {
            text: '4 and 6 Year IPEDS Graduation Rate',
            x: -20 //center
        },
        subtitle: {
            text: 'Hover over any data point to view graduation rates',
            x: -20
        },
        xAxis: {
            categories: ['August 2008', 'August 2009', 'August 2010', 'August 2011', 'August 2012', 'August 2013', 'August 2014']
        },
        yAxis: {
            title: {
                text: '% of students graduated'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            valueSuffix: '%'
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'middle',
            borderWidth: 0
        },
        series: [{
            name: '4 year',
            data: [22, 25, 24, 27, 31, 30, 27]
        }, {
            name: '6 years',
            data: [51, 56, 50, 53, 57, 57, 55]
        }]
    });
});