Alumni Population

Highmaps demo

by Kathryn Atwood

HTML

<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/countries/us/custom/us-ca-congress-113.js"></script>

<div id="container"></div>

CSS

#container {
    height: 500px; 
    min-width: 310px; 
    max-width: 800px; 
    margin: 0 auto; 
}
.loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
}

JavaScript

$(function () {

    // Prepare demo data
    var data = [
        {
            "hc-key": "us-ca-05",
            "value": 3901
        },
        {
            "hc-key": "us-ca-02",
            "value": 2289
        },
        {
            "hc-key": "us-ca-11",
            "value": 419
        },
        {
            "hc-key": "us-ca-03",
            "value": 291
        },
    ];

    // Initiate the chart
    $('#container').highcharts('Map', {

        title : {
            text : 'SSU Alumni Population in Congressional Districts 2, 3, 5, and 11'
        },

        subtitle : {
            text : 'Employee data as of Spring 2017<br>Source map: <a href="https://code.highcharts.com/mapdata/countries/us/custom/us-ca-congress-113.js">California congressional districts</a>'
        },

        mapNavigation: {
            enabled: true,
            buttonOptions: {
                verticalAlign: 'bottom'
            }
        },

        colorAxis: {
            min: 0
        },

        series : [{
            data : data,
            mapData: Highcharts.maps['countries/us/custom/us-ca-congress-113'],
            joinBy: 'hc-key',
            name: 'Number of Alumni',
            states: {
                hover: {
                    color: '#a4edba'
                }
            },
            dataLabels: {
                enabled: true,
                format: '{point.value}'
            }
        }]
    });
});