我有这张图表:
我想将一个单位添加到值“4”(我的 xAxis 的值)。我怎样才能做到这一点?
谢谢
很难说,因为没有发送代码,但看起来你的“4”是一个系列名称(或一些文本项 - 不是一个值)。为此,您可以在本例tooltip.formatter
中使用like 。我已将“%”添加到类别(月)文本中:
tooltip: {
formatter: function() {
return 'The value for <b>'+ this.x +
'%</b> is <b>'+ this.y +'</b>';
}
}
使用tooltip.headerFormat,见:http: //jsfiddle.net/3bQne/647/
tooltip: {
headerFormat: '<span style="font-size: 10px">{point.key} cm</span><br/>'
},
你可以从工具提示格式化程序中做到这一点
tooltip: {
formatter:function(){
var formattedX = "unit" + this.x;
return formattedX + 'this value ' + this.y;
}
}
我希望这能帮到您。
tooltip: {
valueDecimals: 2,
valuePrefix: '$',
valueSuffix: ' USD'
}
请检查以下链接