Bullet
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: 'Current Mobilization'
},
subtitle: {
text: 'Training',
style: {
fontSize: '14px',
fontFamily: 'Verdana, sans-serif'
},
x:-150
},
xAxis: {
categories: ['DDU-GKY', 'DAY-NULM', 'PMKVY', 'DGT-MES', 'MoLE','MNREGA','MSDE','NSDC','NSDA','Ajeevika']
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
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: 'Target',
showInLegend: false,
color: '#0f9cff',
data: [
['DDU_GKY', 220000],
['PMKVY', 270000],
['STEP', 130000],
['USTTAD', 75000],
['DGT MES', 125000],
],
pointPadding: 0.1,
pointPlacement: -0.2
},{
name: 'Achived',
showInLegend: false,
color: '#8deaf9',
data: [
['DDU_GKY', 143000],
['PMKVY', 134000],
['STEP', 43000],
['USTTAD', 21700],
['DGT MES', 27000],
],
pointPadding: 0.4,
pointPlacement: -0.2
}]
});