我想根据全局值格式化可重用的Highcharts工具提示。 (我使用相同的图表在货币和数值之间切换:如果我在图表上显示货币数据,我想将工具提示格式化为货币。)
但是,Highcharts工具提示功能中的this
似乎只引用了本地数据点,而且我似乎无法传递值。
如何传入值或获取全局值?这是我现在的代码,它失败了:
getChartTooltip: function() {
return function(graphType) {
var prefix = (graphType === 'currency') ? '$' : ''; // Fails
return prefix + Highcharts.numberFormat(this.y, 0);
};
},
initializeChart: function() {
var graphType = 'currency';
var chartOptions = {};
chartOptions.tooltip = {
formatter: getChartTooltip(graphType)
};
// create chart, etc...
$('change-chart-type').on('click', function() {
// Try to update the tooltip formatter, fail horribly...
graphType = 'number';
chart.series[0].update({
tooltip: {
formatter: _this.getChartTooltip(graphType)
}
});
});
更好的方法是什么?
答案 0 :(得分:5)
您不需要更改tooltip.formatter
,因为formatter
本身会更改tooltip
。
我会尝试类似的事情:
tooltip: {
formatter: function() {
var unit = ' $',
result = this.value;
if(this.series.name == 'your_currency_serie_name'){
result += unit;
}
return result;
}
}
其中'your_currency_serie_name'
是引用货币值的系列的名称。
答案 1 :(得分:2)
您还可以通过valueDecimals
,valuePrefix
和valueSuffix
选项设置每个系列中的tooltip
选项。然后tooltip
将使用这些选项来显示数据。直播demo。
通用设置:
...
series: [{
tooltip: {
valueDecimals: 0,
valuePrefix: '',
valueSuffix: ''
},
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
tooltip: {
valueDecimals: 2,
valuePrefix: '$',
valueSuffix: ' USD'
},
data: [129.9, 171.5, 1106.4, 1129.2, 1144.0, 1176.0, 1135.6, 1148.5, 1216.4, 1194.1, 195.6, 154.4]
}]
...