Band 2

Fork of http://jsfiddle.net/jlbriggs/5x4xp78s/

by Roydon DSouza

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height:400px;margin:1.5em 1em;"></div>

JavaScript

var data1          = [1,2,3,2,4,5,6,5,7,8,9];
var data4          = [0,1,2,1,3,4,5,4,6,7,8];
var data3          = [2,2,2,2,2,2,2,2,2,2,2];
var data2          = [8,7,6,7,5,4,3,4,2,1,0];


var categories     = ['a','b','c','d','e','f','g','h','i','j'];
var pointStart     = 1404390599000;
var pointInterval  = 86400000;

var options = {
    chart: {
        type:'line',
        style: {
            fontFamily: 'Geneva, Tahoma, Verdana, sans-serif'
        }
    },
    title: {
        text: 'Chart Test Example',
        style: {
            fontSize:'1em',
            fontWeight:'bold'
        }    
    },
    legend: { },
    tooltip: {
        shared: true,
        crossHairs: true,
        useHTML: true
    },
    plotOptions: {
        line: {
            lineWidth:3,
            color:'rgba(0,54,104,1)',
            marker: {
                enabled:false,
                symbol:'circle',
                radius:4
            }
        },
        area: {
            lineWidth:0,
            showInLegend:false,
            enableMouseTracking:false,
            marker: {
                enabled: false
            }
        },
      series: {
            shadow: false
        }
    },
    xAxis: {
        //categories: categories,
        lineColor:'#000',
        lineWidth:.5,
        tickWidth:.5,
        tickLength:3,
        tickColor:'#000',
        title: {  
            text: 'X Axis',
            style: {
                color:'#000',
                fontSize:'.8em'
            }
        }
    },
    yAxis: {
        min:0,
        max:10,
        maxPadding:0,
        lineColor:'#000',
        lineWidth:.5,
        tickWidth:.5,
        tickLength:3,
        tickColor:'#000',
        gridLineWidth:.5,
        gridLineColor:'#eee',
        title: {                
            text: 'Y Axis',
            rotation:0,
            style: {
                color:'#000',
                fontSize:'.8em'
            }
        }
    },
    series:[]
};
   ...