这里是一个有代表性的jsFiddle。我想要的是所有四个数据元素都出现在工具提示上。目前使用辅助 yAxis 的项目不显示。如果我将此点设置为使用主 yAxis,它仍然不会显示。看起来它的 xAxis“链接”已经消失了——它应该使用与其他 3 个相同的 xAxis 类别值。
工具提示的代码:
tooltip: {
formatter: function () {
var s = '<b>' + this.x + '</b>';
$.each(this.points, function (i, point) {
s += '<br/>' + point.series.name + ': ';
if (point.series.name == 'Unemployment Rate (%)') {
s += Highcharts.numberFormat(point.y, 2, '.');
} else {
s += Highcharts.numberFormat(point.y, 0, ',');
}
});
return s;
},
shared: true
},