Javascript examples for highcharts:Stock Chart
Positioning Zoom Buttons outside the chart area within a <div> for stock chart
<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() {// ww w . j ava 2 s . c om $('#all').on('click', function() { var chart = Highcharts.charts[0]; chart.xAxis[0].setExtremes(chart.xAxis[1].min, chart.xAxis[1].max); }); $('#20d').on('click', function() { var chart = Highcharts.charts[0], max = chart.xAxis[0].max, interval = 3600 * 1000 * 24 * 20; chart.xAxis[0].setExtremes(max - interval, max); }); $.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function(data) { Highcharts.stockChart('container', { rangeSelector: { selected: 1 }, title: { text: 'AAPL Stock Price' }, 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 style="width: 100%; display: inline-block;"> <button href="#" id="all" type="button" class="btn btn-xs btn-outline btn-primary active">All</button> <button href="#" id="20d" type="button" class="btn btn-xs btn-outline btn-primary active">20 days</button> </div> <div id="container" style="height: 400px; min-width: 310px"></div> </body> </html>