0

我们如何在 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
       }
         }

在上面的工具提示中,我只返回当前元素名称,有没有办法在那里立即获得下一个元素名称..?

4

1 回答 1

0

您可以随时使用共享工具提示,看看:http ://api.highcharts.com/highcharts#tooltip.shared

于 2013-05-09T09:54:52.873 回答