我知道 highcharts 适用于 IE 7 和 8,但不断出现错误。
在控制台中,第 4287 行失败:elemStyle = element.style
http://jsfiddle.net/petercasanova/BM2Zz/
$(function () {
$(document).ready(function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
series: [{
data: [ 1, 2, 3, 4, 5, 6 ]
}]
});
});
});
</p>