(function () {
var script = document.getElementById('highcharts-script');
function addChart() {
function parseData(completeHandler, chartOptions) {
try {
var dataOptions = {
"seriesMapping": [
{
"x": 0
}
],
"columnTypes": [
"string",
"float"
],
"csv": "Category,Series 1\nLess than $20 per hour,83\n$20 to $40 per hour,31\nMore than $40 per hour,4"
};
dataOptions.sort = true
dataOptions.complete = completeHandler;
Highcharts.data(dataOptions, chartOptions);
} catch (error) {
console.log(error);
completeHandler(undefined);
}
}
var shareUrl = 'https://cloud.highcharts.com/show/edumasu';
var encodedUrl = encodeURIComponent(shareUrl);
var template = {
chart: {
renderTo: 'highcharts-edumasu'
},
navigation: {
menuItemStyle: {
fontFamily: Highcharts.SVGRenderer.prototype.getStyle().fontFamily,
padding: '2px 10px'
}
},
exporting: {
buttons: {
contextButton: {
menuItems: [{
text: '' +
'Share on Facebook'
}, {
text: '' +
'Share on Google+'
}, {
text: '' +
'Share on Twitter'
}, {
text: '' +
'Share on LinkedIn'
}, {
separator: true
}]
.concat(Highcharts.getOptions().exporting.buttons.contextButton.menuItems)
.concat([{
separator: true
}, {
text: '' + 'Edit chart'
}, {
text: '' + 'Create chart'
}])
}
}
}
};
var chartOptions = {
"plotOptions": {
"series": {
"dataLabels": {
"format": "{y}%",
"enabled": true
}
}
},
"yAxis": {
"title": {
"style": {
"fontWeight": "normal",
"color": "#000000"
},
"text": "Percentage of jobs at likely risk of automation"
},
"labels": {
"padding": 20,
"x": 10,
"y": 0
}
},
"xAxis": {
"tickColor": "#ffffff",
"tickPositions": "",
"title": {
"style": {
"fontWeight": "normal",
"color": "#000000"
}
}
},
"credits": {
"enabled": false
},
"legend": {
"verticalAlign": "top",
"align": "right",
"enabled": false
},
"series": [
{
"color": "#00b3ff",
"index": 0
}
],
"subtitle": {
"x": 53,
"text": "Low-paying jobs are particularly vulnerable.",
"align": "left"
},
"title": {
"margin": 50,
"x": 50,
"style": {
"fontSize": "20px",
"fontWeight": "bold"
},
"text": "The Poor Get Poorer",
"align": "left",
"widthAdjust": 10
},
"chart": {
"style": {
"fontFamily": "Arial"
},
"type": "column"
},
"colors": [
"#7cb5ec",
"#434348",
"#90ed7d",
"#f7a35c",
"#8085e9",
"#f15c80",
"#e4d354",
"#2b908f",
"#f45b5b",
"#91e8e1"
]
};
parseData(function (dataOptions) {
// Merge series configs
if (chartOptions.series && dataOptions) {
Highcharts.each(chartOptions.series, function (series, i) {
chartOptions.series[i] = Highcharts.merge(series, dataOptions.series[i]);
});
}
var options = Highcharts.merge(dataOptions, chartOptions, template);
var chart = new Highcharts['Chart'](options);
}, chartOptions);
}
// Load the Highcharts script if undefined, and add the chart
if (typeof Highcharts !== 'undefined') {
addChart();
} else if (script) {
script.deferredCharts.push(addChart);
} else {
script = document.createElement('script');
script.id = 'highcharts-script';
script.src = '//cloud.highcharts.com/resources/js/highstock-cloud-5.0.7.js';
script.type = 'text/javascript';
script.deferredCharts = [addChart];
script.onload = function () {
// Prevent double firing of event in IE9/IE10
if (!script.chartsAdded) {
script.chartsAdded = true;
while(script.deferredCharts.length) {
script.deferredCharts.shift()();
}
}
};
script.onreadystatechange = function() {
if (this.readyState == 'complete' || this.readyState == 'loaded') {
script.onload();
}
};
document.getElementsByTagName('head')[0].appendChild(script);
}
}());