Highcharts Demo
author(s): Torstein Hønsi
by Geo George
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'bar',
width:600,
/* spacingBottom:200 */
},
credits:{
enabled:false
},
title: {
text: 'ASSYST’s Core Areas of Proficiency'
},
xAxis: {
categories: ['Communications Service']
},
yAxis: {
min: 0,
title: {
text: 'Proficiency Ranking'
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
}
},
legend: {
align: 'right',
verticalAlign: 'bottom',
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'white',
borderColor: '#CCC',
borderWidth: 1,
itemMarginTop:8,
borderWidth:0,
shadow: false,
y:10
},
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}'
},
plotOptions: {
column: {
stacking: false,
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
}
},
series: [{
name: 'Branding and graphic design',
data: [2]
}, {
name: 'Web design meeting technical standards of IFC internal and external platforms App development, digital/ mobile enabled products',
data: [1]
}, {
name: 'Video, design, infographic and animation production Creation of customized online collaboration tools and social media content',
data: [3]
},
{
name: 'Print product development (magazines, brochures, post-cards, event collateral)',
data: [3]
},
{
name: 'Mobile friendly infographics and designs',
data: [2]
}]
});