Highstock label the y-axis Maximum - Javascript highcharts

Javascript examples for highcharts:Chart Label

Description

Highstock label the y-axis Maximum

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://code.jquery.com/jquery-1.9.1.js"></script> 
      <script type="text/javascript">
$(function () {/*w ww .  j  ava  2  s.c o m*/
    $.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function (data) {
        // Create the chart
        $('#container').highcharts('StockChart', {
           yAxis : {
                min: 100,
                max: 700,
                startOnTick: true,
                endOnTick: true,
               showLastLabel: true,
                title : {
                    text : 'Exchange rate'
                }
            },
            rangeSelector: {
              enabled: false,
              inputEnabled: false
            },
            series : [{
                name : 'AAPL',
                data : data,
                tooltip: {
                    valueDecimals: 2
                }
            }]
        });
    });
});

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

Related Tutorials