我们如何在Highcharts中获取下一个元素名称
例如
series: [{ name: 'weight', data: [50, 48, 80, 70]},
{ name: 'height',data: [5.8, 5.1, 6.1, 6.0]}
]
tooltip: {
formatter: function(){
return this.series.name;//i want to return here next elements name also is there any way
}
}
在上面的工具提示iam只返回当前元素名称,有没有办法立即得到下一个元素名称..?