Sac State 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: 800px; max-width: 1000px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: 'Sacramento State 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: 'Unknown',
y: 31
}, {
name: 'Criminal Justice',
y: 15
}, {
name: 'Business',
y: 12
}, {
name: 'Nursing',
y: 11
}, {
name: 'Child Development',
y: 8
}, {
name: 'Psychology',
y: 8
}, {
name: 'Speech Pathology/Audiology',
y: 7
}, {
name: 'Sociology',
y: 7
}, {
name: 'Liberal Studies',
y: 6
}, {
name: 'Communications/Journalism',
y: 5
}, {
name: 'Food and Nutrition',
y: 3
}, {
name: 'Kinesiology',
y: 3
}, {
name: 'Economics',
y: 3
}, {
name: 'History',
y: 3
}, {
name: 'English',
y: 2
}, {
name: 'Environmental Studies',
y: 2
}, {
name: 'Government',
y: 2
}, {
name: 'Social Science',
y: 2
}, {
name:...