4-Skill – Automotive
by Kondal Durgam
HTML
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<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: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: ''
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
xAxis: {
labels:{
enabled:false//default is true
},
categories: [
]
},
yAxis: [{
min: 0,
title: {
text: ''
}
}, {
title: {
text: ''
},
opposite: true
}],
legend: {
shadow: false
},
tooltip: {
shared: true
},
plotOptions: {
column: {
grouping: false,
shadow: false,
borderWidth: 0
}
},
series: [{
name: 'Training',
showInLegend: false,
color: '#0f9cff',
data: [5200,6000,3500,4500,4000],
pointPadding: 0.3,
pointPlacement: -0.2
}, {
name: 'Achieved',
showInLegend: false,
color: '#8deaf9',
data: [3900,5300
,3000,3850,2900],
pointPadding: 0.4,
pointPlacement: -0.2
}, {
name: 'Training',
showInLegend: false,
color: 'rgb(60,60,200)',
data: [5000,5500,3200,4200,3500],
pointPadding: 0.3,
pointPlacement: 0.2,
}, {
name: 'Achieved',
showInLegend: false,
color: 'rgb(120,180,220)',
data: [4350,5170,2980,3090,3410],
pointPadding: 0.4,
pointPlacement: 0.2,
}]
});