2016-04-18 66 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等時出現「鏡像」或「反射」數據標籤。 –