Highcharts Demo

author(s): Torstein Hønsi

by Roydon DSouza

HTML

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

<div id="container" style="height: 300px; min-width: 300px"></div>
<div id="reporting"></div>

CSS

#reporting {
    position: absolute; 
    top: 55px; 
    right: 20px; 
    font: 12px Arial, Verdana; 
    color: #666;
    background: white;
}

JavaScript

$(function () {
    var $reporting = $('#reporting');
    
    $('#container').highcharts({
        
        title: {
            text: 'Mouse events demo'
        },
        subtitle: {
            text: 'On point mouse over or mouse out, the values should be reported in top right'
        },
        plotOptions: {
            series: {
               
                point: {
                     events: {
                        mouseover: function() {
                           console.log(this);
                        }
                    }
                },
                events: {
                    mouseOut: function() {                        
                        $reporting.empty();
                    }
                }
            }
        },
        
        tooltip: {
            enabled: false
        },
        
        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
        }]
    });
});