In older versions of highcharts you could have a chart with both line and scatter plots and combine them both into the same tooltip like so:

In highchart 3.0.7 this no longer works. As can be seen in the tooltip below wind dir is not displayed. Win dir is a scatter plot, the others are areaspline:

The tooltip code:
tooltip: {
crosshairs: true,
shared: true,
formatter: function() {
var s = '<b>' + Highcharts.dateFormat('%H%M %p %a %b %e', this.x) + '</b>';
$.each(this.points, function(i, point) {
s += '<br/>' + point.series.name + ': ' + point.y + (this.series.name == 'Wind Dir' ? ' degrees' : ' mph');
});
return s;
}
}
See complete example here.
How can the tooltip in 3.0.7 be made to behave like in 2.2?