Reputation: 9404
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.
Please suggest.
Upvotes: 1
Views: 110
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