0
在以下的高圖stockchart示例中,當您將鼠標懸停在x軸上的標誌上時,可以看到奇怪的行爲。它將簡要顯示標誌的工具提示,但隨着您繼續將鼠標移動到標誌正方形上方,它會切換到數據系列的工具提示。我錯過了一個設置的地方,繼續顯示國旗的工具提示,直到你將鼠標移出它的位置?highcharts stockchart tooltip on flags切換到數據系列工具提示,而鼠標仍然懸停在國旗
{
type: 'flags',
name: 'AxisFlags',
data: [{
x: lastDate - 45 * days,
title: 'On axis',
text: 'A1'
}, {
x: lastDate - 15 * days,
title: 'On axis',
text: 'A2'
}],
tooltip: {
followPointer: true
},
shape: 'squarepin',
zIndex: 999
}