1.引入相关js文件。

<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>
<script src="${pageContext.request.contextPath }/js/highcharts/highcharts.js"></script>
<script src="${pageContext.request.contextPath }/js/highcharts/modules/exporting.js"></script>

2.代码实现。

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>highcharts</title>
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>
<script src="${pageContext.request.contextPath }/js/highcharts/highcharts.js"></script>
<script src="${pageContext.request.contextPath }/js/highcharts/modules/exporting.js"></script>
<script type="text/javascript">
	$(function(){
		//页面加载完成后,动态创建图表
		$("#test").highcharts({
			title: {
	            text: '各浏览器份额'
	        },
	        series: [{
	            type: 'pie',
	            name: '浏览器占比',
	            data: [
	                ['Firefox',   45.0],
	                ['IE',       26.8],
	                ['Safari',    8.5],
	                ['Opera',     6.2],
	                ['Others',   0.7]
	            ]
	        }]
		});
	});
</script>
</head>
<body>
	<div id="test"></div>
</body>
</html>

3.效果如图

highcharts(饼型图)

相关文章:

  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2021-08-18
  • 2018-12-26
  • 2021-10-19
  • 2021-11-13
  • 2021-06-20
猜你喜欢
  • 2021-09-14
  • 2021-12-08
  • 2022-12-23
  • 2021-04-17
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案