答案 0 :(得分:1)
默认dataLabels.style
有textShadow: "0 0 6px contrast, 0 0 3px contrast"
。
您可以通过设置textShadow: "0"
来覆盖此内容。例如:
plotOptions: {
scatter: {
dataLabels: {
style: {
textShadow: "0"
}
}
}
}
见this updated JSFiddle example。 the API documentation中提到了默认样式。