Highcharts Demo

author(s): Torstein Hønsi

by pepperdigital

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

$(function () {
    $('#container').highcharts({

        tooltip: {
            formatter: function () {
                return this.point.z;
            }
        },
        series: [{
            type: 'bar',
            data: [
                {x: 0, y: 0, z: 3},
                {x: 1, y: 5, z: 120},
                {x: 2, y: 2, z: 3}
            ]
        }]
    });
});