我在 Highcharts(使用最新版本 3)中遇到问题,其中 yAxis 标题没有按应有的方式旋转。在 Chrome、Firefox、IE9 和 10 中,它可以正确旋转:
但是,在 IE8 或 7 中,会发生以下情况:
yAxis 的代码:
yAxis: [{ // Primary yAxis
min: 0,
title: {
text: 'Amount',
rotation: 270
}
}, { // Secondary yAxis
min: 0,
opposite: true,
title: {
text: 'Another yAxis',
rotation: -270
}
}],
任何帮助将不胜感激。我环顾四周,似乎没有多少人有这种问题,因为它在 IE8/7 中旋转并正常工作,唯一的问题是文本看起来模糊/弄脏。
我读到它可能是我的 IE 浏览器并将其切换到文档模式 8/7,这可能无法准确反映它在 IE7/8 中的样子(使用 IE10)。