Javascript examples for highcharts:Chart Axis
rescale yaxis attribute with addSeries in stock chart
<html> <head> <title>Jugal | Add series dynamically | Highchart & Highstock</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #container{/*from w w w .j a v a 2 s . c o m*/ min-width:500px; } </style> <script type="text/javascript"> var VanillaRunOnDomReady = function() { $("#add").click(function(){ chart.addSeries(jugalsLib.createSeries({minValue:50,maxValue:150}),true,true); }); var chartingOptions = { }; chartingOptions = $.extend({}, jugalsLib.getBasicChartOptions(1,{minValue:0,maxValue:75}), chartingOptions); var chart = new Highcharts.StockChart(chartingOptions); } var alreadyrunflag = 0; if (document.addEventListener) document.addEventListener("DOMContentLoaded", function(){ alreadyrunflag=1; VanillaRunOnDomReady(); }, false); else if (document.all && !window.opera) { document.write('<script type="text/javascript" id="contentloadtag" defer="defer" src="javascript:void(0)"><\/script>'); var contentloadtag = document.getElementById("contentloadtag") contentloadtag.onreadystatechange=function(){ if (this.readyState=="complete"){ alreadyrunflag=1; VanillaRunOnDomReady(); } } } window.onload = function(){ setTimeout("if (!alreadyrunflag){VanillaRunOnDomReady}", 0); } </script> </head> <body> <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.2.js"></script> <script type="text/javascript" src="http://code.jugal.me/js/jugalsLib.js"></script> <script type="text/javascript" src="https://code.highcharts.com/stock/highstock.src.js"></script> <script type="text/javascript" src="https://code.highcharts.com/stock/modules/exporting.src.js"></script> <div id="container"></div> <input type="button" id="add" value="Add Series"> </body> </html>