答案 0 :(得分:-1)
将此添加到您的配置对象
yAxis: {
labels: {
formatter: function(){
if (this.value>=0){
return '$'+this.value;
}
return '- $'+ (0 - this.value);
}
}
}