22

我需要在工具提示上显示 3 个值:时间、值和另一个值(更改)。

我看到了这个例子(但 jsdfiddle 不工作)。

我试过这个

//each loop..
indice.push(["time", "value1", "value2"]);

, 工具提示设置

tooltip:
    {
    useHTML: true,
    formatter: function()
    {
      return '' + Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y + this.z(<-is this right?);
    }
},

和系列

series:
[{
    type: 'area',
    data: indice
}]

有人可以帮忙吗?谢谢。

4

5 回答 5

43

如果要为 x 和 y 值以外的点传递其他数据,则必须命名该值。在以下示例中,我将以下三个附加值添加到每个数据点:

{
  y: 3,
  locked: 1,
  unlocked: 1,
  potential: 1,
}

然后要在工具提示中访问和显示这些值,我使用以下命令:

tooltip: 
{
     formatter: function() { return ' ' +
        'Locked: ' + this.point.locked + '<br />' +
        'Unlocked: ' + this.point.unlocked + '<br />' +
        'Potential: ' + this.point.potential;
     }
}
于 2012-07-02T13:48:20.743 回答
7

如果您在多系列 Highstocks 图表中想要在工具提示中显示系列特定数据,您可以执行以下操作。

var series = [];

// Populate our series
series.push({
  name: "small_cities",
  displayName: "Small Cities",
  color: "#123456",
  data: [...]
});
series.push({
  name: "Countries",
  displayName: "Countries",
  color: "#987654",
  data: [...]
});

chart: {
  ...

  tooltip: {
    formatter: function() {
      var s = '';
      $.each(this.points, function(i, point) {
        s += '<br /><span style="color:' + this.series.color + '">' +
             point.series.userOptions.displayName + '</span>: ' + point.y;
      });
      return s;
    }
  },

  ...
}

现在您将看到漂亮的系列名称“Small Cities”而不是 series.name (small_cities)。您在系列上设置的所有属性都可以在 中找到this.points[].series.userOptions。有关更多格式化程序选项,请查看Highstocks 文档

于 2013-10-16T12:49:33.037 回答
5

两种方式。

1

series: [
          { ...
            tooltip:
              {pointFormat: "<span style=\"color:{series.color}\">{series.name}</span>: <b>{point.y} {y2}</b><br/>"}
          }, ...          
         ]
o = Highcharts.Point.prototype.tooltipFormatter
Highcharts.Point.prototype.tooltipFormatter=function(format){return o.call(this, format).replace("{y2}", this.config[2]);}

2

 a = new Highcharts.StockChart(options); 
 a.series[0].tooltipFormatter = function(item) { return "<span style=\"color:{" + item.series.color+"\">" +item.series.name+"</span>: <b>"+item.y+item.point.config[2]+"</b><br/>"; }
于 2012-12-21T08:54:50.977 回答
5

我想通了,我在数据数组中传递了 3 个值

indice.push([(new Date(value.x)).getTime(), val_change[0], val_change[1]]);

series: [{ type: 'area', name: titleindice, data: indice, showInLegend : false //禁用显示/隐藏图标 }]

并在工具提示中

tooltip:
                {
                    useHTML: true,
                    formatter: function()
                    {
                        var color = "";

                        return Highcharts.dateFormat('%H:%M:%S', this.x) + this.y +  this.point.config[2] ;

                    }
                },
于 2012-07-02T15:00:53.343 回答
4

我尝试过的是将系列名称与 x 轴和 y 轴值连接起来,对我来说效果很好。您面临什么问题?

tooltip: { formatter: function () { return this.x + ': ' + this.series.name + ': ' + this.y; } }
于 2012-07-02T13:40:39.203 回答