How to get next point in Highcharts tooltip
how can I access to the next point of the series from the tooltip formatter. Because I want to do a sum between both points. Like this.y + next.y. But I don't know how to have an access to the next point. If someone have an answer. Thanks This need to be done in a few steps: get x-index according to x-value: var index = this.series.xData.indexOf(this.x); now get y-value: var nextY = this.series.yData[index+1]; And all you need to do is to sum values, like this: var sum = this.y + nextY; . 来源: https://stackoverflow.com/questions/21578555/how-to-get-next-point-in-highcharts-tooltip