在IE中重复数据标签

时间:2016-04-18 09:32:05

标签: highcharts

当我在Internet Explorer(版本11.0.9600.17691)中导出图表时。如下图所示,重复数据标签。使用Chrome时我没有这个问题。

enter image description here

请建议。

1 个答案:

答案 0 :(得分:1)

我已将 textShadow 设置为空白,这对我有用。

plotOptions: {
               series: {
                   grouping: true,
                   pointPadding: 0,
                   borderWidth: 0,
                   dataLabels: {
                       enabled: true,
                       crop: false,
                       formatter: function() {
                           return this.y.toFixed(1);
                       },
                       style: {
                            textShadow: ''
                       }
                   }

               }