如何禁用"阴影渐变"格式?

时间:2015-02-17 12:27:15

标签: highcharts

我认为这很奇怪......

突然,格式的数量有阴影(阴影),但我没有修改代码。

这怎么可能?

在数字之前只是黑色。

http://jsfiddle.net/0fqmoqwa/3/

   format: 0

1 个答案:

答案 0 :(得分:1)

默认dataLabels.styletextShadow: "0 0 6px contrast, 0 0 3px contrast"

您可以通过设置textShadow: "0"来覆盖此内容。例如:

plotOptions: {
    scatter: {
        dataLabels: {
            style: {
                textShadow: "0" 
            }
        }
    }
}

this updated JSFiddle examplethe API documentation中提到了默认样式。