1D flag chart - Javascript highcharts

Javascript examples for highcharts:Chart Configuration

Description

1D flag chart

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  w w.  j  ava2 s  . c  om
  $('#container').highcharts({
    series: [{
      type: 'flags',
      data: [{
        x: 10,
        title: 'hello',
        text: 'say hello'
      }, {
        x: 20,
        title: 'world',
        text: 'say world'
      }, {
        x: 50,
        title: 'bonjour',
        text: 'say bonjour'
      }],
      shape: 'circlepin',
      width: 16
    }]
  });
});

      </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