如何将 Highcharts 工具提示定位在条形图顶部或 Y 轴的 0 行以获得负值

How to position Highcharts tooltip on top of bar or at 0 line of Y-axis for negative value

Highcharts 工具提示显示在栏底部的负值,但我希望它显示在顶部或 0 轴级别。请帮忙

根据 highcharts 当前工具提示位置:

我想定位的参考图片:

你可以这样设置tooltip的定位器

   tooltip: {
        positioner: function(__, __, point) {
        return {
          x: point.plotX,
          y: point.negative ? point.plotY - point.h : point.plotY
        }
      }
    }