Axis plotLines label position settings - Javascript highcharts

Javascript examples for highcharts:Chart Axis

Description

Axis plotLines label position settings

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Demo</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.js"></script> 
      <div id="container" style="height: 400px"></div> 
      <script type="text/javascript">
Highcharts.chart('container', {
    xAxis: {/*from www . j a v  a2s  .co m*/
        tickInterval: 24 * 3600 * 1000, // one day
        type: 'datetime'
    },
    yAxis: {
        plotLines: [{
            color: 'red',
            width: 2,
            value: 100,
            label: {
                text: 'Plot line',
                align: 'right',
                y: 20
            }
        }]
    },
    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
        pointStart: Date.UTC(2010, 0, 1),
        pointInterval: 24 * 3600 * 1000
    }]
});

      </script>  
   </body>
</html>

Related Tutorials