Get data attribute value from container div tag - Javascript highcharts

Javascript examples for highcharts:Chart Data

Description

Get data attribute value from container div tag

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 () {/*  www .  j a v a2 s. co m*/
    var $container = $('#container');
    $container.highcharts({
        series: [{
            name: 'Tokyo',
            data: $container.data('values')
        }]
    });
});

      </script> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.js"></script> 
      <script src="https://code.highcharts.com/modules/exporting.js"></script> 
      <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto" data-values="[1,2,3]"></div>  
   </body>
</html>

Related Tutorials