Stacked CEO chart
author(s):
Torstein Hønsi
by Danielle Parkinson
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; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: ' '
},
xAxis: {
categories: ['Pace of globalization', 'Adoption of protectionist policies', 'Immigration levels', 'Public trust in businesses', 'Inflation', 'Interest rates', 'Tax rates']
},
yAxis: {
min: 0,
title: {
text: ' '
},
stackLabels: {
enabled: false,
style: {
fontWeight: 'normal',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
}
},
legend: {
align: 'center',
x: -30,
verticalAlign: 'bottom',
y: 25,
floating: false,
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'white',
borderColor: '#fff',
borderWidth: 1,
shadow: false
},
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: false,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
}
},
series: [{
name: 'Increase',
data: [64,31,37,35,51,53,67],
color: '#00338d',
}, {
name: 'Stay the same',
data: [33,51,52,45,39,40,30],
color: '#0091da',
}, {
name: 'Decline',
data: [4,17,11,20,10,7,3],
color: '#483698',
}]
});