USF Majors

author(s): Torstein Hønsi

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

JavaScript

Highcharts.chart('container', {
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false,
        type: 'pie'
    },
    title: {
        text: 'University of San Francisco Graduates Majors 2006-2010'
    },
    tooltip: {
        pointFormat: '{series.name}: <b>{point.y}</b>'
    },
    plotOptions: {
        pie: {
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: {
                enabled: true,
                format: '<b>{point.name}</b>: {point.y}',
                style: {
                    color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                }
            }
        }
    },
    series: [{
        name: 'Majors',
        colorByPoint: true,
        data: [{
            name: 'Sociology',
            y: 3
        }, {
            name: 'Nursing',
            y: 6
        }, {
            name: 'International Studies',
            y: 2
        }, {
            name: 'Business',
            y: 2
        }, {
            name: 'Politics',
            y: 1
        }, {
            name: 'Environmental Science',
            y: 1
        }, {
            name: 'Psychology',
            y: 1
        }, {
            name: 'Communications',
            y: 1
         }, {
            name: 'Math',
            y: 1
        }]
    }]
});