2016-02-27 46 views
0

我需要的信息形式,鼠標在Highcharts線圖來看,我試圖用工具提示,但因爲有一個錯誤:函數語句需要一個名字。我已將格式化程序作爲onclick函數放入plotOptions中。我不知道我是否可以一起使用這兩個選項。我還需要獲取線路名稱。Highcharts鼠標點信息

plotOptions:{ 
 
       series:{ 
 
        allowPointSelect: true, 
 
        point: { 
 
         events:{ 
 
          click: function(e) {/*$("#displayText").html(e.currentTarget.y)*/ 
 
           
 
           tooltip: { 
 
\t       formatter: function() { 
 
          alert(this.x); 
 
            } 
 
            }, 
 
\t \t \t \t \t \t \t } 
 
         }       
 
        }, 
 
\t \t \t \t \t 
 
       } 
 
      },

+0

爲什麼裏面有你'..point.events.click'一個'tooltip.formatter'? –

+0

@HalvorStrand當你點擊一個點後,它會顯示點擊後點的x.axis等信息。點擊這個點後我需要這些數據。其實我希望它能夠在點擊所選的點後返回這些信息。 – Adi

回答

1

好吧,我是完全錯誤的。這是檢索折線圖數據的答案。

plotOptions:{ 
 
       series:{ 
 
        allowPointSelect: true, 
 
        point: { 
 
         events:{ 
 
          click: function() { 
 
          alert('Category: ' + this.category + ', value: ' + this.series.name); //this.x+1 is the msgID 
 
          } 
 
         }       
 
        }, 
 
\t \t \t \t \t 
 
       } 
 
      },

相關問題