Column chart, tooltip usage - Javascript highcharts

Javascript examples for highcharts:Column Chart

Description

Column chart, tooltip usage

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Demo</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> 
      <script type="text/javascript">
$(function () {//w  w  w  . j a  v  a  2  s  .  c o m
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: 'Chart'
        },
        series: [{
            name: "Test1",
            data: [30]
        },
        {
            data: [60]
        },
      {
            data: [10]
        },        ]
    });
});

      </script> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.js"></script> 
      <div id="container" style="height: 400px"></div>  
   </body>
</html>

Related Tutorials