FTF Gender Ethnicity 2015

by Kathryn Atwood

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/data.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.js"></script>

<div id="container" style="min-width: 310px; max-width: 600px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    // Create the chart
    $('#container').highcharts({
        chart: {
            type: 'pie'
        },
        title: {
            text: 'First Time Freshman Gender and Ethnicity, Fall 2015'
        },
        subtitle: {
            text: 'Click the slices to view ethnicity data.'
        },
        plotOptions: {
            series: {
                dataLabels: {
                    enabled: true,
                    format: '{point.name}: {point.y}'
                }
            }
        },

        tooltip: {
            headerFormat: '<span style="font-size:11px">{series.name}</span><br>',
            pointFormat: '<span style="color:{point.color}">{point.name}</span>: <b>{point.y}</b> of total<br/>'
        },
        series: [{
            name: 'Gender',
            colorByPoint: true,
            data: [{
                name: 'Females',
                y: 1715,
                drilldown: 'Females'
            }, {
                name: 'Males',
                y: 990,
                drilldown: 'Males'
            }]
        }],
        drilldown: {
            series: [{
                name: 'Females',
                id: 'Females',
                data: [
                    ['American Indian Only', 6],
                    ['Asian Only', 82],
                    ['Black Only', 38],
                    ['Hispanic/Latino', 658],
                    ['White Only', 681],
                    ['Multiracial', 148],
                    ['Pacific Islander Only', 3],
                    ['Unknown', 99]
                ]
            }, {
                name: 'Males',
                id: 'Males',
                data: [
                    ['American Indian Only', 6],
                    ['Asian Only', 72],
                    ['Black Only', 34],
                    ['Hispanic/Latino', 296],
                    ['White Only', 444],
                    ['Multiracial', 68],
                    ['Pacific Islander Only', 1]
                ...