Problem with text translation in Highcharts yAxis format in IE8

Demo

Hi, I am using the Highcharts library to draw diagrams, however I ran into a problem with yAxis in Internet Explorer.

How can yAxis text be correctly rotated in IE8 and IE7?

+4
source share
2 answers

I have the same problem and I realized that this problem is caused by the ie8 emulator. Therefore, if you use the native ie8 (ie8 from windows xp), it will work without problems. In code with large maps, there is a method for creating css properties, and on this, highcharts create a property for each browser. if ie -ms-transform, if mozilla moz-transform, if web set ...

But for a browser earlier than ie9, css3 rotate is not supported, so the matrix rotates, and this guy (progid: DXImageTransform.Microsoft.Matrix) does not work on the ie8 emulator.

Try running your code on winxp native ie8 and it will work. ; D

+5
source

Based on your description of the problem, I believe this will help. Please note that the only workaround is to apply the background color to the label.

https://github.com/highslide-software/highcharts.com/issues/663

0
source

All Articles