2016-04-18 36 views
1

当我在Internet Explorer(版本11.0.9600.17691)中导出图表时。正如您在下面的图片中看到的那样,数据标签会重复。使用Chrome时我没有这个问题。在IE中重复数据标签

enter image description here

请建议。

+0

你能发布一个现场的例子,像jsFiddle?我无法重新创建你的问题 - http://jsfiddle.net/zxp116t4/2/你试过将IE11升级到11.0.9600.18xxx吗? –

回答

1

我已经设置了文字阴影空白,它适用于我。

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

       } 
+0

此解决方案还有助于防止在将列或条形图导出为PNG等时出现“镜像”或“反射”数据标签。 –