highcharts的饼图在IE浏览器上无法显示,提示‘undefined'为空或不是对象,其他的游览器都可正常显示 35
<scripttype="text/javascript"src='${pageContext.request.contextPath}/javascript/highc...
<script type="text/javascript" src='${pageContext.request.contextPath}/javascript/highcharts.js'></script>
<script type="text/javascript" src='${pageContext.request.contextPath}/javascript/jquery-1.8.2.js'></script> <script type="text/javascript">
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text:''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1,
enabled: true
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
<c:forEach var="list" items="${test}">
{ name:'${list.xl}',
id:'${list.id}',
y:${list.bfb},
color:'${list.col}'
},
</c:forEach>
]
</script>
<body>
<div id="container" style="min-width: 600px; height: 200px; margin: 0 auto"></div>
</body> 展开
<script type="text/javascript" src='${pageContext.request.contextPath}/javascript/jquery-1.8.2.js'></script> <script type="text/javascript">
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text:''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1,
enabled: true
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
<c:forEach var="list" items="${test}">
{ name:'${list.xl}',
id:'${list.id}',
y:${list.bfb},
color:'${list.col}'
},
</c:forEach>
]
</script>
<body>
<div id="container" style="min-width: 600px; height: 200px; margin: 0 auto"></div>
</body> 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏35(财富值+成长值)
若以下回答无法解决问题,邀请你更新回答
2个回答
展开全部
你好,自带的ie浏览器一般优化比较差,访问网页会比较卡的话,我建议你还是使用QQ浏览器9.0,因为它的团队中来自微软Windows部门,曾经参与了Windows7和Windows8性能优化的专家们,从整个操作系统的视角和深度,全面地去优化浏览器在Windows操作系统的性能,而且QQ浏览器9.0采用了业内独创的浏览器架构,这个架构完美的利用了操作系统的特性。
追问
客户用的是IE,在IE6上做的测试
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Highcharts 6
从 Highcharts 6.0.0 开始,我们将兼容低版本 IE 的代码单独成一个模块文件,这样用户可以根据需求是否加载对应的文件,可以减少在主流浏览器上加载代码的大小,推荐以下面形式加载这个文件:
<script src="https://img.hcharts.cn/highcharts/highcharts.js"><!-- 其他 Highcharts 需要的文件 --><!--[if lt IE 9]>
<script src="https://img.hcharts.cn/highcharts/modules/oldie.js"></script>
<![endif]-->
从 Highcharts 6.0.0 开始,我们将兼容低版本 IE 的代码单独成一个模块文件,这样用户可以根据需求是否加载对应的文件,可以减少在主流浏览器上加载代码的大小,推荐以下面形式加载这个文件:
<script src="https://img.hcharts.cn/highcharts/highcharts.js"><!-- 其他 Highcharts 需要的文件 --><!--[if lt IE 9]>
<script src="https://img.hcharts.cn/highcharts/modules/oldie.js"></script>
<![endif]-->
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询