首页 技术 正文
技术 2022年11月9日
0 收藏 498 点赞 4,649 浏览 1407 个字

1、设计3D帕累托图的页面

Pareto3D.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <title>FusionCharts Pareto3D</title>    <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">    <script type="text/javascript" src="../scripts/jquery-2.0.3.js"></script>    <script type="text/javascript" src="../scripts/Charts/FusionCharts.js"></script>    <script type="text/javascript">        $(function(){              var pareto3D = new FusionCharts( "../scripts/Charts/Pareto3D.swf", "pareto3DId", "100%", "540", "0" );        pareto3D.setXMLUrl("data/pareto3D.xml");              pareto3D.render("pareto3DChart");        });    </script>  </head>  <body>    <div id="pareto3DChart"></div>  </body></html>

2、设计3D帕累托图的数据源

pareto3D.xml:

<?xml version="1.0" encoding="UTF-8"?><chart  caption="一周统计人数" xAxisName="星期" PYAxisName ="人数" plotGradientColor="" showValues='0'        baseFont='微软雅黑' baseFontSize='20' baseFontColor='#654545' outCnvBaseFont='宋体'        outCnvBaseFontSize='24' outCnvBaseFontColor='#989899' drawAnchors='1' anchorSides='4'        anchorRadius='10' anchorBorderColor='#FF0000' anchorBorderThickness='1' anchorBgColor='#00FF00'        anchorAlpha='50' anchorBgAlpha='50' numDivLines='8' divLineIsDashed='1'>   <set label="星期一" value="205"/>   <set label="星期二" value="165"/>   <set label="星期三" value="85"/>   <set label="星期四" value="62"/>   <set label="星期五" value="73"/>   <set label="星期六" value="109"/>   <set label="星期日" value="121"/></chart>

3、设计结果

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,088
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,564
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,412
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,185
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,822
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,905