15

我有一个 highcharts 表,其中包含两个使用命名值的数据系列。在我的一个系列的工具提示中,我想引用该系列中的一个数据点。所以这个答案中的解决方案:如何在同一图形的每条曲线中在 Highcharts 上使用不同的格式化程序?对我没有帮助。我需要的不仅仅是 tooltipText,我还需要一个格式化程序:

对于一个:

formatter: function() {
    return this.x + ': ' + this.series.name +
    '<br> $' + Highcharts.numberFormat(this.y, 0);
     }

对于另一个:

formatter: function() {
    return 'In ' + this.x + ' the median value was' + this.median + 
    'and the total $' + Highcharts.numberFormat(this.y, 0);                        
 }
4

3 回答 3

30

内部格式化程序this指的是焦点系列,您可以if/else在格式化程序内部添加一个并为每个格式化程序返回一个字符串,如下所示。

tooltip: {
    shared: false,
    formatter: function() {
        var text = '';
        if(this.series.name == 'MSFT') {
            text = this.x + ': ' + this.series.name +
                   '<br> $' + Highcharts.numberFormat(this.y, 0);
        } else {
            text = 'In ' + this.x + ' the median value was' + this.median +
                   'and the total $' + Highcharts.numberFormat(this.y, 0);
        }
        return text;
    }
}

演示

于 2012-12-19T03:19:55.257 回答
2

您可以轻松地为每个系列定义工具格式器 - 请参见此处:http ://api.highcharts.com/highcharts/plotOptions.series.tooltip

{
  tooltip: {
          shared: true
  },
  series: {
     name: 'some series name',
     data: mydata,
     tooltip: {
        valueSuffix: ' bar'
     }
  }
}

示例:http: //jsfiddle.net/28qzg5gq/

于 2016-11-25T14:25:38.483 回答
-1

这是一个例子。小提琴示例在这里

tooltip: {
            formatter: function () {
                var s = '<b>' + Highcharts.dateFormat('%A, %b %e, %Y', this.x) + '</b>';

                $.each(this.points, function () {
                    s += '<br/>1 USD = ' + this.y + ' EUR';
                });

                return s;
            }
        },
于 2014-11-09T10:28:50.727 回答