1

在 Highcharts 中,我的数据设置如下:

var data = [{
    x: Date.UTC(2011, 10, 1),
    y: 1.9,
    variance: 2.6
}, {
    x: Date.UTC(2011, 11, 1),
    y: 2.0,
    variance: 2.6
}...];

我想在我的工具提示中使用方差值。但是方差值不会显示在工具提示格式化程序可用的点对象中。我错过了什么?

JSFiddle:http: //jsfiddle.net/hofo/um7f6/17/

4

2 回答 2

1

将您的格式化程序字符串修复为以下内容:

var tooltipString = "Highcharts.dateFormat('%b-%y', this.x) + ' survey<br>Average inflation expectations: ' + this.y + '<br>Variance ' + point.point.variance";

然后你应该把它添加到你的detailChart数据中。

更改detailData.push(point.y);detailData.push(point.options);

演示

于 2013-03-27T20:17:54.163 回答
1

请看类似的例子http://jsfiddle.net/fbMQf/119/

    tooltip:{
    formatter:function(){
        return '<b>' + this.series.name + '</b>' + 
        '<br/><b>X Value:</b> ' + this.x +
        '<br/><b>Y Value:</b> ' + this.y +
        '<br/><b>Other Data:</b> ' + this.point.note;
    }
},
于 2013-03-28T15:18:37.377 回答