Sameek Mishra
Sameek Mishra

Reputation: 9404

Data labels are repeated in IE

When i exported chart in internet explorer (version 11.0.9600.17691). As you can see in below image, data labels are repeated. I don’t have this issue when using Chrome.

enter image description here

Please suggest.

Upvotes: 1

Views: 110

Answers (1)

Sameek Mishra
Sameek Mishra

Reputation: 9404

I have set the textShadow blank and it works for me.

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

               }

Upvotes: 1

Related Questions