以下 HTML 不在 IE8 上显示图表。在 Firefox、Chrome 以及 IE9 和 IE10 上运行良好。在 IE8 上,我只能看到标题(日期)和“气压”。dygraph-combined.js 是当前版本。前六行是推荐的。如果你去掉宽度选项,它就可以工作。
只是为了让生活更有趣,如果我用 ylabel:'millibars' 替换宽度,它不会显示标签。天哪,我讨厌 IE。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
<!--[if IE]><script src="/excanvas_r3/excanvas.js"></script><![endif]-->
<script type="text/javascript" src="dygraph-combined.js"></script>
<title>Real-Time Hydrologic System</title>
</head>
<body>
<div id="graphdiv"></div>
<script type="text/javascript">
g = new Dygraph(
// containing div
document.getElementById("graphdiv"),
// CSV or path to a CSV file.
"http://ra-tes.org/bigrain-14.csv" , { width: 600 }
);
</script>
</body>
</html>