Set alternate Grid Color for plot bands - Javascript highcharts

Javascript examples for highcharts:Chart Color

Description

Set alternate Grid Color for plot bands

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Demo</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
$(function () {/* w w  w . ja  va  2s.  c o  m*/
    var $report = $('#report');
    $('#container').highcharts({
        yAxis:{
            alternateGridColor: '#F5F5F5',
        },
        xAxis: {
            plotBands: [{ // mark the weekend
                color: '#FCFFC5',
                from: Date.UTC(2010, 0, 2),
                to: Date.UTC(2010, 0, 4),
                events: {
                    click: function (e) {
                        $report.html(e.type);
                    },
                    mouseover: function (e) {
                        $report.html(e.type);
                    },
                    mouseout: function (e) {
                        $report.html(e.type);
                    }
                },
                zIndex: 2
            }],
            tickInterval: 24 * 3600 * 1000,
            // one day
            type: 'datetime'
        },
        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
            pointStart: Date.UTC(2010, 0, 1),
            pointInterval: 24 * 3600 * 1000
        }]
    });
});

      </script> 
   </head> 
   <body> 
      <div id="container" style="height: 300px"></div> 
      <div id="report"></div> 
      <script src="https://code.highcharts.com/highcharts.js"></script>  
   </body>
</html>

Related Tutorials