5

可能重复:
将附加数据设置为 highcharts 系列

所以我有这张图:http: //jsfiddle.net/Gg3ZL/

我想在工具提示中用另一个新数据替换当前显示“在线玩家总数”的地方

Array= ['PlayerX, PlayerY, PlayerZ', 'Player1, Player2, Player3'];  

ETC

以便它与第一个系列数据输入中的第一个结果匹配....

如果我不必替换“在线玩家总数:”,而只需在工具提示中添加另一个新条目,例如“谁在线:”,那就更好了。

基本上将鼠标悬停在一个条目上,然后在工具提示上查看哪些玩家在特定时间在线。

谢谢你的帮助

4

1 回答 1

16

series.data您可以在以下每个点上附加附加数据

series: [{
    name: 'Series 1',
    data: [{
        y: 2,
        players: ['a', 'b']},
    {
        y: 3,
        players: ['a', 'b', 'c']},
    {
        y: 2,
        players: ['x', 'y']},
    {
        y: 4,
        players: ['a', 'b', 'c', 'd']}
    ]
}]

现在,tooltip.formatter您可以按如下方式使用附加数据

formatter: function() {
    var result = '<b>' + Highcharts.dateFormat('%A, %b %e, %Y', this.x) + '</b>';
    $.each(this.points, function(i, datum) {
        result += '<br />' + datum.y + ' players online';
        $.each(datum.point.players, function() {
            result += '<br/>' + this;
        });
    });
    return result;
}

复杂工具提示 | Highchart & Highstock @ jsFiddle

于 2012-11-26T11:21:24.887 回答