highcharts的饼图在IE浏览器上无法显示,提示‘undefined'为空或不是对象,其他的游览器都可正常显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了highcharts的饼图在IE浏览器上无法显示,提示‘undefined'为空或不是对象,其他的游览器都可正常显示相关的知识,希望对你有一定的参考价值。
<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>
客户用的是IE,在IE6上做的测试
参考技术B 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的饼图在IE浏览器上无法显示,提示‘undefined'为空或不是对象,其他的游览器都可正常显示的主要内容,如果未能解决你的问题,请参考以下文章
如何解决,小程序里echarts画的饼图在安卓手机上效果不正常