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: [{
            id: 'g1',
            color: 'blue',
            name: "group1",
            data: [50,20,30,50],
            stack: "move"
        }, {
            linkedTo: 'g1',
            color: 'blue',
            name: "group1",
            data: [10,23,0,52],
            stack:"delete"
        },{
            id: 'g2',
            color: 'green',
            name: "group2",
            data: [50,20,30,50],
            stack: "move"
        }, {
            linkedTo: 'g2',
            color: 'green',
            name: "group2",
            data: [10,23,0,52],
            stack:"delete"
        }
                 
                ]
    });
});