Employeement and Internship
Kondal
by Kondal Durgam
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: ''
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
xAxis: {
categories: [
'2014',
'2015',
'2016',
'2017'
],
crosshair: true
},
yAxis: {
min: 0,
max:500,
title: {
text: ''
}
},
tooltip: { enabled: false },
plotOptions: {
column: {
pointPadding: 0,
borderWidth: 0
}
},
series: [{
name: 'Tokyo',
color:'#013968',
data: [270, 280,300,350]
}, {
name: 'New York',
color:'#3fb7bd',
data: [250, 260,250,300]
}]
});