Highcharts Demo - more tooltip data
author(s): Torstein Hønsi
by John Allan
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 300px"></div>
JavaScript
$(function () {
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
tooltip: {
pointFormat: 'weight: <b>{point.y}</b><br/>breed: <b>{point.breed}</b>',
valueSuffix: 'lbs',
shared: true
},
series: [{
name: 'dogs',
data: [
{ y : 20, breed : 'Spaniel' },
{ y : 35, breed : 'Boxer' },
{ y : 42, breed : 'Rottweiler' }
]
}]
});
});