Create area chart and stock chart from same data source - Javascript highcharts

Javascript examples for highcharts:Stock Chart

Description

Create area chart and stock chart from same data source

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <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">
    $(window).load(function(){//w w  w  . j a  va 2s.  c  o  m
$(function () {
    var chart = new Highcharts.StockChart({
        chart: {
            renderTo: 'container1'
        },
        tooltip: {
            shared: false,
            positioner: function (w,h,p) {
               return { x: p.plotX + chart.plotLeft, y: p.plotY + chart.plotTop };
            }
        },
        series: [{type:"area",
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
        }, {
            data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
        }]
    });
});
$(function () {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container2'
        },
        tooltip: {
            positioner: function (w,h,p) {
               return { x: p.plotX + chart.plotLeft, y: p.plotY + chart.plotTop };
            }
        },
        series: [{type:"area",
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
        }, {
            data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
        }]
    });
});
    });

      </script> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/stock/highstock.js"></script> 
      <div id="container1" style="height: 300px"></div> 
      <div id="container2" style="height: 300px"></div>  
   </body>
</html>

Related Tutorials