fushionchart在ie10下面图表显示不出来
我的FusionCharts JavaScript的版本信息如下
/*!
* FusionCharts JavaScript Library
* Copyright FusionCharts Technologies LLP
* @license License Information at <http://www.fusioncharts.com/license>
*
* @author FusionCharts
* @version 3.2.1-release
*
* Third-party attributions:
* SWFObject v2.2 <http://code.google.com/p/swfobject/>
* JSON v2 <http://www.JSON.org/js.html>
* Firebug Lite 1.3.0 <http://getfirebug.com/firebuglite>
* jQuery 1.4.2 <http://jquery.com/>
*/
我的图表在ie10下面就显示不了,其他浏览器可以
我的代码很简单
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>MyHtml.html</title>
<script src="FusionCharts.js"></script>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
<div id="test"></div>
<script type="text/javascript">
var t = new FusionCharts("Column2D.swf","m","600","500");
t.setDataURL("123.xml");
t.render("test");
</script>
</body>
</html>
123.xml的如下
<?xml version="1.0" encoding="UTF-8"?>
<graph caption='告警情况(2015-07-25至2015-07-31)' xAxisName='各类告警' yAxisName='个数' showValues='1' numberPrefix='' decimalPrecision='0' formatNumberScale='0' formatNumber='0' bgcolor='F3f3f3' bgAlpha='70' showColumnShadow='1' divlinecolor='c5c5c5' divLineAlpha='60' showAlternateHGridColor='1' alternateHGridColor='f8f8f8' alternateHGridAlpha='60'>
<set name='1' value='563' color='FF0000' />
</graph>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
初步应该已经解决,请参考如下链接
1、开启主机flash player,见:
http://jingyan.baidu.com/article/154b46315421b528ca8f41e4.html
2、关闭IE ActiveX,见:
http://jingyan.baidu.com/article/47a29f24333612c0142399db.html
应该显示的效果