Certifications
author(s):
Torstein Hønsi
by VivekChandravathi
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/series-label.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"></div>
CSS
#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}
JavaScript
Highcharts.chart('container', {
title: {
text: 'Certifications'
},
yAxis: {
title: {
text: 'No. of Styles'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
plotOptions: {
series: {
label: {
connectorAllowed: false
},
pointStart: 2010
}
},
series: [{
name: 'BSCI',
data: [634, 503, 477, 358, 231, 131, 033, 175]
}, {
name: 'GOTS',
data: [316, 264, 142, 051, 190, 282, 321, 434]
}, {
name: 'Higg',
data: [144, 322, 505, 771, 985, 277, 447, 687]
}, {
name: 'ISO 9001',
data: [null, null, 388, 569, 712, 952, 200, 427]
},
{
name: 'Blue Sign',
data: [null, null, 788, 569, 312, 152, 200, 427]
},],
responsive: {
rules: [{
condition: {
maxWidth: 500
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});