JFreeChart生成饼图

1、生成饼图的代码如下:

/**
 * @Title:PieChart.java
 * @Package:com.you.jfreechart
 * @Description:生成饼图
 * @author:Youhaidong(游海东)
 * @date:2013-7-22 下午11:41:11
 * @version V1.0
 */
package com.you.jfreechart;

import java.awt.Font;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartFrame;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.PiePlot;
import org.jfree.chart.title.LegendTitle;
import org.jfree.data.general.DefaultPieDataset;

/**
 * 类功能说明
 * 类修改者 修改日期
 * 修改说明
 * <p>Title:PieChart.java</p>
 * <p>Description:游海东个人开发</p>
 * <p>Copyright:Copyright(c)2013</p>
 * @author:游海东
 * @date:2013-7-22 下午11:41:11
 * @version V1.0
 */
public class PieChart {

	/**
	 * @Title:main
	 * @Description:饼图类
	 * @param:@param args
	 * @return: void
	 * @throws
	 */
	public static void main(String[] args) {
		//
		DefaultPieDataset dpd = new DefaultPieDataset();
		//设置值
		dpd.setValue("苹果", 145);
		dpd.setValue("梨子", 245);
		dpd.setValue("香蕉", 345);
		dpd.setValue("菠萝", 645);
		dpd.setValue("桃子", 945);
		dpd.setValue("柚子", 445);
		dpd.setValue("橘子", 745);
		dpd.setValue("李子", 845);
		dpd.setValue("荔枝", 545);
		dpd.setValue("蛇果", 1045);
		
		//生成饼图
		JFreeChart chart = ChartFactory.createPieChart("水果数量分布", dpd, true, true, false);
		//解决标题乱码
		chart.getTitle().setFont(new Font("宋体",Font.BOLD,20));
		
		ChartFrame chartFrame = new ChartFrame("水果数量分布", chart);
		chartFrame.pack();
		chartFrame.setVisible(true);
		
		//解决饼图的乱码
		PiePlot plot = (PiePlot)chart.getPlot();
		plot.setLabelFont(new Font("宋体",Font.BOLD,12));
		
		//解决Legend乱码问题
		LegendTitle legendTitle = chart.getLegend(0);
		legendTitle.setItemFont(new Font("宋体",Font.BOLD,12));
		
	}

}

2、结果如下图:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值