Offers
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: 'Offers'
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
xAxis: {
categories: [
'',
''
]
},
yAxis: {
title: {
text: ''
}
},
series: [{
name: 'Plan',
color: '#1F4788',
data: [450]
}, {
name: ' Actual',
color: '#4B77BE',
data: [140]
}, {
name: 'Acceptance',
color: '#317589',
data: [200]
}, {
name: 'Rejection',
color: '#89C4F4',
data: [300]
}]
});