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 () {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            type: 'column'
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        
        series: [{
            name: 'Vente - 1',
            data: [[0,23],[3,20],[4,18],[9,25],[11,25]]  
        },
         {
            name: 'Vente - 2',
            data: [[1,10],[5,50],[6,20],[2,18],[7,25],[11,12]]  
        }
        ,
         {
            name: 'Vente - 3',
            data: [[2,10],[5,40],[4,20],[10,18],[8,25],[1,12]]  
        } 
        ,
         {
            name: 'Vente - 4',
            data: [[0,10],[2,50],[11,20],[7,18],[5,25],[3,12]]  
        } 
        ,
         {
            name: 'Vente - 5',
            data: [[8,10],[3,50],[1,20],[4,18],[11,25],[7,12]]  
        } 
        ,
         {
            name: 'Vente - 6',
            data: [[7,10],[2,50],[11,20],[7,18],[1,25],[10,12]]  
        } 
        ]
    });
});