Faculty Ranking

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; max-width: 600px; margin: 0 auto"></div>

JavaScript

$(function () {

    $(document).ready(function () {

        // Build the chart
        $('#container').highcharts({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false,
                type: 'pie'
            },
            title: {
                text: 'Academic Ranking of SSU Faculty, Spring 2016'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.y}</b>'
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true
                }
            },
            series: [{
                name: 'Faculty',
                colorByPoint: true,
                data: [{
                    name: 'Professor',
                    y: 163
                }, {
                    name: 'Associate Professor',
                    y: 53,
                }, {
                    name: 'Assistant Professor',
                    y: 25
                }, {
                    name: 'Lecturers',
                    y: 332
                }, {
                    name: 'Librarians',
                    y: 6
                }, {
                    name: 'Writing Center Directors',
                    y: 1
                }]
            }]
        });
    });
});