JavaScript
$(function () {
$('#container').highcharts({
title: {
text: 'Education FTES 2011-2015',
x: -20 //center
},
subtitle: {
text: '',
x: -20
},
xAxis: {
categories: ['2011', '2012', '2013', '2014', '2015']
},
yAxis: {
title: {
text: 'Total FTES'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: ''
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
name: 'Educ: Curric & Teach',
data: [12.50, 17.33, 14.25, 12.33, 10.50]
}, {
name: 'Educ: Early Child. Ed.',
data: [65.62, 77.70, 100.22, 115.75, 158.73]
}, {
name: 'Educ: Leadership',
data: [18.00, 30.25, 22.65, 33.80, 28.50]
}, {
name: 'Educ: Mult. Subj.',
data: [145.65, 124.15, 108.42, 155.57, 139.68]
}, {
name: 'Educ: Read & Lang.',
data: [11.00, 8.00, 6.58, 10.00, 2.75]
}, {
name: 'Educ: Sp. Edu.',
data: [69.03, 65.33, 54.77, 48.10, 53.87]
}, {
name: 'Educ: Single Subj.',
data: [102.67, 101.87, 92.48, 109.58, 122.80]
}, {
name: 'Educ: Teaching Eng.',
data: [6.95, 4.35, 4.60, 4.35, 3.90]
}, {
name: 'Education',
data: [86.17, 78.22, 81.37, 79.25, 72.07]
}]
});
});