Show tooltip in load event
Description
The following code shows how to show tooltip in load event.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(function () {<!--from w w w . jav a2 s .c om-->
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
events: {
load: function() {
this.tooltip.refresh(this.series[0].data[0]);
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0]
}]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; width: 500px"></div>
</body>
</html>