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: {
            shadow:false,
            renderTo: 'container',
            type: 'column',
            zoomType:'x',
        },
        
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
            
        },
        
        series: [{
            shadow:false,
           data: [120, {y:130,color:'#BF0B23'},{y:90,color:'red'},{y:130,color:'red'},{y:130,color:'red'},{y:130,color:'red'}, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, 120, 120, 130, 140, 150, 160, 170, 150, {y:130,color:'red'},120, 0, 0, 0, 0, 0],
            
        }]
    });
});