Highcharts Demo
author(s):
Torstein Hønsi
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
xAxis: {
categories: ["1/5","2/5","3/5","5/5"]
},
plotOptions: {
series: {
stacking: 'normal'
}
},
series: [{
name: "group1",
data: [50,20,30,50],
stack: "move"
}, {
name: "group1",
data: [10,23,0,52],
stack:"delete"
},{
name: "group2",
data: [50,20,30,50],
stack: "move"
}, {
name: "group2",
data: [10,23,0,52],
stack:"delete"
}
]
});
});