我想通过使用datatable插件作为jquery中的数据,在要显示的网页上创建一个饼图。 因此,下面是饼图的代码,其中数据作为json数据手动输入。
<script src="js/highcharts.j`enter code here`s" type="text/javascript"></script>
<script src="js/jquery-1.7.1.js" type="text/javascript"></script>
<script type="text/javascript">
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'browser_cart',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.percentage +' clicks';
}
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45],
['IE', 26],
['Chrome', 12],
['Safari', 8],
['Opera', 6],
['Others', 7]
]
}]
});
});
</script>
</head>
<body>
<!-- 3. Add the container -->
<div id="browser_cart" style="width: 800px; height: 400px; margin: 0 auto"></div>
</body>
我收到了错误消息 - &gt; “Highcharts没有定义。 合并不是一种功能。“
答案 0 :(得分:1)
你有一个错字:
<script src="js/highcharts.j`enter code here`s" type="text/javascript"></script>
应该是:
<script src="js/highcharts.js" type="text/javascript"></script>
答案 1 :(得分:0)
<script src="js/highcharts.j`enter code here`s" type="text/javascript"></script>
我觉得enter code here
根本不需要......
请查看地址