Occupational Groups

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: 'IPEDS Occupation Groups of SSU Faculty and Staff, Spring 2016'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.y}</b>'
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true
                }
            },
            series: [{
                name: 'Number of Employees',
                colorByPoint: true,
                data: [{
                    name: 'Faculty',
                    y: 628
                }, {
                    name: 'Professional and Technical',
                    y: 396,
                }, {
                    name: 'Management',
                    y: 178
                }, {
                    name: 'Office and Administrative',
                    y: 99
                }, {
                    name: 'Service',
                    y: 92
                }, {
                    name: 'Construction, Maitenance, Transportation',
                    y: 72
                }, {
                    name: 'Uncategorized',
                    y: 321
                }]
            }]
        });
    });
});