一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

java 百分比饼图的实现代码

时间:2011-12-19 编辑:简简单单 来源:一聚教程网

一个显示百分比的饼图如下

image

实现代码

 代码如下 复制代码

<%@ page contentType="text/html;charset=GBK"%>
 
 <%@ page
     import="org.jfree.chart.*,org.jfree.chart.plot.PiePlot,
     org.jfree.data.general.DefaultPieDataset,
     org.jfree.chart.servlet.ServletUtilities,
     java.awt.*,org.jfree.chart.title.TextTitle"%>
 <%@ page
     import="org.jfree.chart.labels.StandardPieSectionLabelGenerator"%>
 <%@ page import="java.text.NumberFormat"%>
 <%@page import="java.text.DecimalFormat"%>
 
 <%
     //设置数据集
     DefaultPieDataset dataset = new DefaultPieDataset();
     dataset.setValue("初中高级程序员", 0.52);
     dataset.setValue("项目经理", 0.1);
     dataset.setValue("系统分析师", 0.1);
     dataset.setValue("软件架构师", 0.1);
     dataset.setValue("其他", 0.18);
 
     //通过工厂类生成JFreeChart对象
     JFreeChart chart = ChartFactory.createPieChart3D("IT行业职业分布图",
             dataset, true, false, false);
 
     PiePlot pieplot = (PiePlot) chart.getPlot();
     //一块突出的饼图,在网上搜了好久也没找到可行的实现方式,欢迎大侠指导
 //pieplot.setExplodePercent("A",0.3D);//炸开的饼图,目前实现还有问题
 
 //DecimalFormat:
 //NumberFormat:
 //StandardPieSectionLabelGenerator:
 //setLabelGenerator():   
     DecimalFormat df = new DecimalFormat("0.00%");//获得一个DecimalFormat对象,主要是设置小数问题
     NumberFormat nf = NumberFormat.getNumberInstance();//获得一个NumberFormat对象
     StandardPieSectionLabelGenerator sp = new StandardPieSectionLabelGenerator(
             "{0}{2}", nf, df);//获得StandardPieSectionLabelGenerator对象
     pieplot.setLabelGenerator(sp);//设置饼图显示百分比
 
 //没有数据的时候显示的内容
     pieplot.setNoDataMessage("无数据显示");
     pieplot.setCircular(false);
     pieplot.setLabelGap(0.02D);
 
     pieplot.setIgnoreNullValues(true);//设置不显示空值
     pieplot.setIgnoreZeroValues(true);//设置不显示负值
 
 //标题文字乱码  IT行业职业分布图
     TextTitle textTitle = chart.getTitle();
     textTitle.setFont(new Font("宋体", Font.PLAIN, 20));
 
     //饼上的文字乱码
     PiePlot plot = (PiePlot) chart.getPlot();
     plot.setLabelFont(new Font("宋体", Font.PLAIN, 12));
 
     //图例文字乱码 饼图下面的5个说明
     chart.getLegend().setItemFont(new Font("宋体", Font.PLAIN, 12));
 
     String filename = ServletUtilities.saveChartAsPNG(chart, 500, 300,
             null, session);
     String graphURL = request.getContextPath()
             + "/DisplayChart?filename=" + filename;
 %>
 
 
    
         饼状图2(加上百分比并突出显示某块)
    
    
                      usemap="#<%= filename %>">
    
 

热门栏目