答案 0 :(得分:1)
您可以通过工具提示的pointFormat属性编辑工具提示的格式。看看这个fiddle.
tooltip: {
pointFormat: '<span style="color:{point.color}">\u25CF</span> You can change the tooltip format here: <b>{point.y}</b><br/>',
valueSuffix: ' km/h'
}
查看工具提示here的其他属性;
答案 1 :(得分:0)
您可以使用tooltip.formatter,根据您的要求自定义工具提示内容。
tooltip: {
formatter: function () {
return 'The value for <b>' + this.x +
'</b> is <b>' + this.y + '</b>';
}
},