Highcharts的例子,它有两个系列。
Highcharts.chart('container', {
xAxis: {
categories: [
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
]
},
tooltip: {
shared: true
},
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]
}, {
data: [216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5]
}]
});
1 - 将鼠标悬停在系列上,工具提示总是出现在左边(除非在视口的边界)2 - 点击其中一个图例项来隐藏1行3 - 将鼠标悬停在单行上。 我注意到工具提示总是在标记的中心位置。
我怎样才能使工具提示总是悬停在标记的左边。
你可以使用 tooltip.positioner
回调以达到预期的效果。
演示。https:/jsfiddle.netBlackLabel9of37Lyx。
tooltip: {
shared: true,
positioner(labelWidth, labelHeight, point) {
return {x: point.plotX - labelWidth / 2, y: point.plotY}
}
},