0

所以我想在这组数据中调用“名称”,以便在脚本另一部分的函数中使用。

我可以通过使用调用ticker、x、info和hover变量

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);
4

1 回答 1

1

您希望event.point.series.name 每个点都包含对其父系列的引用。

于 2013-04-01T20:33:03.710 回答