2013-03-11 76 views
1

我正在使用Highstock JS v1.2.4。IE 9 64位渲染問題

我創建了一個包含多個系列的圖表。這些系列以團隊的形式組合在一起。所以,我在畫線分離器分離這些羣體使用

axis.addPlotLine({ 
       id: 'separator', 
       value: minVal, // minVal is dynamic 
       width: global.lineWidth, // global.lineWidth is 2 
       color: timelineDefaults.colors.separatorLine, // Line Color 
       dashStyle: 'solid' 
      }); 

而且,我已經加入 plotBorderColor: '#346691', plotBorderWidth:1, .. chart:{...}

這是工作順利,直到我已經升級到Windows 7 64位和IE 9固有的64位。相同的代碼工作如果我在IE 32位7 - 8 9和9兼容模式下測試它們)。

這裏是屏幕enter image description here

這是從IE 64位不支持 enter image description here

回答

1

兼容模式,唯一的本地瀏覽器。

+0

我們的產品在默認採用兼容模式的IE控件上運行。 – 2013-03-11 10:35:18

+0

它適用於32位兼容模式。所以,我想你需要用64位IE版本進行測試。 – 2013-03-11 10:36:14

+0

完整的兼容性列表在這裏發佈:http://www.highcharts.com/documentation/compatibility – 2013-03-11 11:08:32