0
所以我想在這組數據中調用「名稱」以在腳本的另一部分的函數中使用。散點圖:如何將系列名稱變爲函數
我能叫股票,X,信息,並通過使用
event.point.ticker懸停變量,event.point.info
,但我沒有帶想出如何獲取該系列的名稱。我嘗試過許多東西,如...
series.name,this.series.name和event.point.name,this.chart.name
都無濟於事。下面是數據
series:
[{
name: 'Weak Outlook',color: 'red',data:
[{
x: 40,
y:10,
ticker:'Michael Kors: (KORS)',
info: 'Outlook roughly inline<br>1Q Revenue below street expectations', hover:'Guidance slightly below consensus<br>1Q Revenue to disappoint<br><a href="">read more</a>'
},
{
x: 20,
y:50,
ticker:'Shares to sell off on earnings',
info:'Data implies that shares, after management releases Q1 guidance, will...<br><br><a href="">read more</a>'
},
{
x:0,y:0,ticker:'Zynga: (ZNGA)'
},
{
x:3,y:4,ticker:'Avid: (AVID)'
},
{
x:4,y:10,ticker:'JCPenny: (JCP)'
},
{
x:6,y:25,ticker:'Deckers Outdoor: (DECK)'},
{
x:0,y:100,ticker:'Nutrisystem Corp: (NTRI)'
},
]}],
,這裏是不工作的是我通過事件和系列作爲參數的函數,公告,我使用「series.name」,試圖得到的名稱該系列......這似乎並不奏效
click: function(event,series)
{
xmlhttp.open("GET","/s.php?o="+event.point.ticker+"&q="+event.point.y+"&r="+event.point.x+"&s="+event.point.info+"&t="+series.name+"&u="+event.point.str5+"&v="+event.point.str6,true);
哪個事件和元素(點/系列)應該被解僱,以顯示更多的信息? –