custom x axis labels or force x axis labels for specific format in stock chart - Javascript highcharts

Javascript examples for highcharts:Chart Label

Description

custom x axis labels or force x axis labels for specific format in stock 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   ww  w.j  a v  a  2s. c o  m*/
    $('#container').highcharts('StockChart', {
        xAxis: {
            ordinal: false,
            range: 6 * 30 * 24 * 3600 * 1000, // six months
            tickInterval: 30 * 24 * 3600 * 1000
        },
        rangeSelector: {
            enabled: false
        },
        series: [{
            name: 'USD to EUR',
            data: usdeur
        }]
    });
});

      </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> 
      <script type="text/javascript" src="https://www.highcharts.com/samples/data/usdeur.js"></script>  
   </body>
</html>

Related Tutorials