Highcharts Demo
author(s): Torstein Hønsi
by jeffgw
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="ib_history" style="height: 200px"></div>
JavaScript
Highcharts.chart('ib_history', {
chart: {
type: 'column'
},
title:{
text:null
},
credits:{
enabled:false,
},
legend: {
enabled: false
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
plotOptions: {
series: {
dataLabels: {
enabled: true
}
}
},
series: [{
data: [10,12,8,14,10,10]
}]
});