放大后我的highcharts列范围工具提示有问题。 基本上我在列范围图表上放大(zoomType:'xy')后,对于某些列,工具提示显示,而其他一些工具提示只是拒绝弹出。我尝试调试它并且没有调用tooltip.positioner函数。
至try it。
复制以下内容并运行它。
$(function () {
window.chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'columnrange',
inverted: true,
zoomType: 'xy'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar']
},
legend: {
enabled: false
},
series: [{
name: 'Temperatures',
data: [
[-9.7, 9.4],
[-8.7, 6.5],
[-3.5, 9.4]
]
}]
});
});
现在尝试缩放,您会注意到某些特定列上的工具提示有时不会显示。
有什么建议吗?
答案 0 :(得分:1)
我最近遇到了这个问题,并通过在工具提示中设置 followPointer 属性来解决:
tooltip : {
followPointer: true
}
请参阅:http://api.highcharts.com/highcharts#tooltip.followPointer