Show scrollbar for line chart - Javascript highcharts

Javascript examples for highcharts:Line Chart

Description

Show scrollbar for line chart

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Stock 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() {//from   w  w w .  j a  va  2s  . c  om
   var chart = new Highcharts.Chart({
       chart: {
           renderTo: 'container'
       },
        xAxis:{
            min:0,
            max:2,
            categories:['first','second','third','fourth']
        },
       scrollbar: {
          enabled: true
       },
        navigator:{
            enabled:true
        },
       rangeSelector: {
            enabled:false
       },
       series: [{
           name: 'USD to EUR',
           data: [1,3,4,6]
       }]
   });
});

      </script> 
   </head> 
   <body> 
      <div id="container" style="height: 400px; min-width: 600px"></div> 
      <script src="https://code.highcharts.com/stock/highstock.js"></script> 
      <script src="https://code.highcharts.com/stock/modules/exporting.js"></script>  
   </body>
</html>

Related Tutorials