jfreechart 饼形图 显示数据精确度

package com.chart;


import java.awt.Color;
import java.awt.Font;
import java.io.File;
import java.io.FileOutputStream;
import java.text.DecimalFormat;
import java.text.NumberFormat;


import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.CategoryAxis;
import org.jfree.chart.axis.CategoryLabelPositions;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.labels.StandardCategoryItemLabelGenerator;
import org.jfree.chart.labels.StandardPieSectionLabelGenerator;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PiePlot3D;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.renderer.category.BarRenderer;
import org.jfree.chart.renderer.category.LineAndShapeRenderer;
import org.jfree.chart.renderer.category.StackedBarRenderer;
import org.jfree.chart.title.TextTitle;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.general.DatasetUtilities;
import org.jfree.data.general.DefaultPieDataset;
import org.jfree.data.general.PieDataset;


/**
 * jfreechart应用_经典例题_生成饼状图、生成单组柱状图、生成多组柱状图、生成堆积柱状图、生成折线图
 * 实际取色的时候一定要16位的,这样比较准确
 * 
 */
public class DoubleChart {
 private static final String CHART_PATH = "D:/";


 public static void main(String[] args) {
  // TODO Auto-generated method stub
  CreateChartServiceImpl pm = new CreateChartServiceImpl();
  // 生成饼状图
  pm.makePieChart();
  
 }


 /**
  * 生成饼状图
  */
 public void makePieChart() {
  double[] data = { 9, 91 };
  String[] keys = { "失败率", "成功率" };


  createValidityComparePimChar(getDataPieSetByUtil(data, keys), "饼状图",
    "pie2.png", keys);
 }


 


 // 饼状图 数据集
 public PieDataset getDataPieSetByUtil(double[] data,
   String[] datadescription) {


  if (data != null && datadescription != null) {
   if (data.length == datadescription.length) {
    DefaultPieDataset dataset = new DefaultPieDataset();
    for (int i = 0; i < data.length; i++) {
     dataset.setValue(datadescription[i], data[i]);
    }
    return dataset;
   }


  }


  return null;
 }


 


 /**
  * 饼状图
  * 
  * @param dataset
  *            数据集
  * @param chartTitle
  *            图标题
  * @param charName
  *            生成图的名字
  * @param pieKeys
  *            分饼的名字集
  * @return
  */
 public String createValidityComparePimChar(PieDataset dataset,
   String chartTitle, String charName, String[] pieKeys) {
  JFreeChart chart = ChartFactory.createPieChart3D(chartTitle, // chart
    // title
    dataset,// data
    true,// include legend
    true, false);


  // 使下说明标签字体清晰,去锯齿类似于
  // chart.getRenderingHints().put(RenderingHints.KEY_TEXT_ANTIALIASING,RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);的效果
  chart.setTextAntiAlias(false);
  // 图片背景色
  chart.setBackgroundPaint(Color.white);
  // 设置图标题的字体重新设置title
  Font font = new Font("隶书", Font.BOLD, 25);
  TextTitle title = new TextTitle(chartTitle);
  title.setFont(font);
  chart.setTitle(title);


  PiePlot3D plot = (PiePlot3D) chart.getPlot();
  // 图片中显示百分比:默认方式


  // 指定饼图轮廓线的颜色
  // plot.setBaseSectionOutlinePaint(Color.BLACK);
  // plot.setBaseSectionPaint(Color.BLACK);


  // 设置无数据时的信息
  plot.setNoDataMessage("无对应的数据,请重新查询。");


  // 设置无数据时的信息显示颜色
  plot.setNoDataMessagePaint(Color.red);


  // 图片中显示百分比:自定义方式,{0} 表示选项, {1} 表示数值, {2} 表示所占比例 ,小数点后两位
  plot.setLabelGenerator(new StandardPieSectionLabelGenerator(
    "{0}={1}({2})", NumberFormat.getNumberInstance(),
    new DecimalFormat("0.00%")));
  // 图例显示百分比:自定义方式, {0} 表示选项, {1} 表示数值, {2} 表示所占比例
  plot.setLegendLabelGenerator(new StandardPieSectionLabelGenerator(
    "{0}={1}({2})"));


  plot.setLabelFont(new Font("SansSerif", Font.TRUETYPE_FONT, 12));


  // 指定图片的透明度(0.0-1.0)
  plot.setForegroundAlpha(0.65f);
  // 指定显示的饼图上圆形(false)还椭圆形(true)
  plot.setCircular(false, true);


  // 设置第一个 饼块section 的开始位置,默认是12点钟方向
  plot.setStartAngle(90);


  // // 设置分饼颜色
  plot.setSectionPaint(pieKeys[0], new Color(244, 194, 144));
  plot.setSectionPaint(pieKeys[1], new Color(144, 233, 144));


  FileOutputStream fos_jpg = null;
  try {
   // 文件夹不存在则创建
   isChartPathExist(CHART_PATH);
   String chartName = CHART_PATH + charName;
   fos_jpg = new FileOutputStream(chartName);
   // 高宽的设置影响椭圆饼图的形状
   ChartUtilities.writeChartAsPNG(fos_jpg, chart, 500, 230);


   return chartName;
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  } finally {
   try {
    fos_jpg.close();
    System.out.println("create pie-chart.");
   } catch (Exception e) {
    e.printStackTrace();
   }
  }


 }


 /**
  * 判断文件夹是否存在,如果不存在则新建
  * 
  * @param chartPath
  */
 private void isChartPathExist(String chartPath) {
  File file = new File(chartPath);
  if (!file.exists()) {
   file.mkdirs();
   // log.info("CHART_PATH="+CHART_PATH+"create.");
  }
 }

}

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值