How is it possible my charts load fine in JS Fiddle but added to my page they will not load? Any help solving this would be appreciated.
My fiddle is located here: http://jsfiddle.net/bY4k8/
Here is my code:
// JavaScript Document
$(function () {
Highcharts.setOptions({
colors: ['#67c7f8', '#cc0000', '#8bba00', '#f6bd0f', '#cc33ff', '#cccccc', '#ffff33', '#CCFF99']
});
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'enroll1',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
events: {
load: function(event) {
console.log(this);
}
}
},
title: {
text: 'University Enrollment by Program',
style: {
Color: '#666'
}
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<strong>'+ this.point.name +'</strong>: '+ this.y +' %';
}
},
formatter: function() {
return this.point.name +' ('+ Highcharts.numberFormat(this.percentage, 0, ',') +'%)';
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
distance: -30,
color: 'black',
formatter: function() {
return + this.y +' %';
}
},
showInLegend: true,
point: {
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
}
}
},
series: [{
type: 'pie',
name: 'Enrollment by Program',
data: [
['Undergraduates', 58.1],
['Graduates', 12.4],
['First Professionals', 29.4]
]
}],
exporting: {
buttons: {
exportButton: {
enabled:false
},
printButton: {
enabled:false
}
}
},
legend: {
borderColor: '#666',
align: 'left',
backgroundColor: '#FFFFFF',
verticalAlign: 'top',
floating: true,
x: 305,
y: 150,
width: 120,
itemStyle: {
color: '#000000',
fontWeight: 'normal',
fontSize: '10px'
}
}
});
});
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'enroll2',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
events: {
load: function(event) {
console.log(this);
}
}
},
title: {
text: 'University Enrollment by Campus',
style: {
Color: '#666'
}
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<strong>'+ this.point.name +'</strong>: '+ this.y +' %';
}
},
formatter: function() {
return this.point.name +' ('+ Highcharts.numberFormat(this.percentage, 0, ',') +'%)';
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
distance: -30,
color: 'black',
formatter: function() {
return + this.y +' %';
}
},
showInLegend: true,
point: {
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
}
}
},
series: [{
type: 'pie',
name: 'Enrollment by Campus',
data: [
['Stockton', 80],
['Sacramento', 13],
['San Francisco', 7.6]
]
}],
exporting: {
buttons: {
exportButton: {
enabled:false
},
printButton: {
enabled:false
}
}
},
legend: {
borderColor: '#666',
align: 'left',
backgroundColor: '#FFFFFF',
verticalAlign: 'top',
floating: true,
x: 305,
y: 150,
width: 120,
itemStyle: {
color: '#000000',
fontWeight: 'normal',
fontSize: '10px'
}
}
});
});
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'enroll3',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
events: {
load: function(event) {
console.log(this);
}
}
},
title: {
text: 'University Enrollment by Ethnicity',
style: {
Color: '#666'
}
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<strong>'+ this.point.name +'</strong>: '+ this.y +' %';
}
},
formatter: function() {
return this.point.name +' ('+ Highcharts.numberFormat(this.percentage, 0, ',') +'%)';
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
distance: -30,
color: 'black',
formatter: function() {
return + this.y +' %';
}
},
showInLegend: true,
point: {
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
}
}
},
series: [{
type: 'pie',
name: 'Enrollment by Ethnicity',
data: [
['White, non-Hispanic', 34.0],
['Asian/Pacific Islander', 32.0],
['Hispanic', 19.0],
['International', 5.0],
['Black, non-Hispanic', 3.0],
['Multi-Ethnic/Unknown', 7.0],
['Am Indian/Alaskan Native', 1.0]
]
}],
exporting: {
buttons: {
exportButton: {
enabled:false
},
printButton: {
enabled:false
}
}
},
legend: {
borderColor: '#666',
align: 'left',
backgroundColor: '#FFFFFF',
verticalAlign: 'top',
floating: true,
x: 270,
y: 190,
width: 150,
height: 200,
itemStyle: {
color: '#000000',
fontWeight: 'normal',
fontSize: '10px'
}
}
});
});
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'enroll4',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
events: {
load: function(event) {
console.log(this);
}
}
},
title: {
text: 'University Enrollment by Gender',
style: {
Color: '#666'
}
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<strong>'+ this.point.name +'</strong>: '+ this.y +' %';
}
},
formatter: function() {
return this.point.name +' ('+ Highcharts.numberFormat(this.percentage, 0, ',') +'%)';
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
distance: -30,
color: 'black',
formatter: function() {
return + this.y +' %';
}
},
showInLegend: true,
point: {
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
}
}
},
series: [{
type: 'pie',
name: 'Enrollment by Gender',
data: [
['Male', 55],
['Female', 45]
]
}],
exporting: {
buttons: {
exportButton: {
enabled:false
},
printButton: {
enabled:false
}
}
},
legend: {
borderColor: '#666',
align: 'left',
backgroundColor: '#FFFFFF',
verticalAlign: 'top',
floating: true,
x: 305,
y: 150,
width: 120,
itemStyle: {
color: '#000000',
fontWeight: 'normal',
fontSize: '10px'
}
}
});
});
});
$(function () {and$(document).ready(function () {accomplish the same thing, so you should not need the$(document).ready(calls. – cjc343 Nov 9 '12 at 17:47$(document).ready(4 times in your script. put it all under the same roof and change your chart variables to something sequential so you will not reuse your variables (chart1, chart2, chart3, etc) – McMastermind Nov 9 '12 at 17:49