继续重构,这次代码增加了,柱状图的生成方法
代码如下:
package com.media.zhb.jfreechart; import java.awt.Color; import java.awt.Font; import java.text.DecimalFormat; import java.text.NumberFormat; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartFrame; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.CategoryAxis; import org.jfree.chart.axis.NumberAxis; import org.jfree.chart.labels.StandardPieSectionLabelGenerator; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.plot.PiePlot; import org.jfree.chart.plot.PlotOrientation; import org.jfree.chart.title.LegendTitle; import org.jfree.chart.title.TextTitle; import org.jfree.data.category.CategoryDataset; import org.jfree.data.general.DatasetUtilities; import org.jfree.data.general.DefaultPieDataset; public class MyJfreechartTest { /** * 获得数据集 * * @return */ private static DefaultPieDataset getDataSet() { DefaultPieDataset dfp = new DefaultPieDataset(); dfp.setValue("管理人员", 25); dfp.setValue("市场人员", 35); dfp.setValue("开发人员", 20); dfp.setValue("后勤人员", 5); dfp.setValue("财务人员", 15); return dfp; } /** * 生成饼状图 */ public static void makePieChart3D() { // 获得数据集 DefaultPieDataset dataset = getDataSet(); // 利用chart工厂创建一个jfreechart实例 // 方法说明见API JFreeChart chart = ChartFactory.createPieChart3D("饼状图", dataset, true, false, false); // 设置pieChart的标题与字体 String chartTitle = "饼状图"; Font font = new Font("宋体", Font.BOLD, 25); TextTitle title = new TextTitle(chartTitle); title.setFont(font); chart.setTitle(title); chart.setTextAntiAlias(false); // 设置背景色 chart.setBackgroundPaint(new Color(199, 237, 204)); // 设置图例字体 LegendTitle legend = chart.getLegend(0); legend.setItemFont(new Font("隶书", 1, 15)); // 设置图标签字体 PiePlot plot = (PiePlot) chart.getPlot(); plot.setLabelFont(new Font("隶书", Font.TRUETYPE_FONT, 12)); // 指定图片的透明度(0.0-1.0) plot.setForegroundAlpha(0.65f); // 图片中显示百分比:自定义方式,{0} 表示选项, {1} 表示数值, {2} 表示所占比例 ,小数点后两位 plot.setLabelGenerator(new StandardPieSectionLabelGenerator( "{0}={1}({2})", NumberFormat.getNumberInstance(), new DecimalFormat("0.00%"))); // 图例显示百分比:自定义方式, {0} 表示选项, {1} 表示数值, {2} 表示所占比例 plot.setLegendLabelGenerator(new StandardPieSectionLabelGenerator( "{0} ({2})")); // 设置第一个 饼块section 的开始位置,默认是12点钟方向 plot.setStartAngle(90); /***********************************************************/ ChartFrame frame = new ChartFrame("饼状图 ", chart, true); frame.pack(); frame.setVisible(true); } /** * 生成柱状图 */ public static void makeBarChart3D() { double[][] data = new double[][] { { 672, 766, 223, 540, 126 }, { 325, 521, 210, 340, 106 }, { 332, 256, 523, 240, 526 } }; String[] rowKeys = { "苹果", "梨子", "葡萄" }; String[] columnKeys = { "北京", "上海", "广州", "成都", "深圳" }; CategoryDataset dataset = DatasetUtilities.createCategoryDataset( rowKeys, columnKeys, data); JFreeChart chart = ChartFactory.createBarChart3D("柱状图", "水果", "销量", dataset, PlotOrientation.VERTICAL, true, true, true); String chartTitle = "柱状图"; Font font = new Font("宋体", Font.BOLD, 25); TextTitle title = new TextTitle(chartTitle); title.setFont(font); chart.setTitle(title); chart.setTextAntiAlias(false); chart.setBackgroundPaint(new Color(199, 237, 204)); // 设置图例字体 LegendTitle legend = chart.getLegend(0); legend.setItemFont(new Font("隶书", Font.TRUETYPE_FONT, 15)); // 获得柱状图的Plot对象 CategoryPlot plot = chart.getCategoryPlot(); // 取得横轴 CategoryAxis categoryAxis = plot.getDomainAxis(); // 设置横轴显示标签的字体 categoryAxis.setLabelFont(new Font("宋体", Font.BOLD, 18)); // 分类标签以45度角倾斜 categoryAxis.setTickLabelFont(new Font("隶书", Font.TRUETYPE_FONT, 18)); // 取得纵轴 NumberAxis numberAxis = (NumberAxis) plot.getRangeAxis(); // 设置纵轴显示标签的字体 numberAxis.setLabelFont(new Font("宋体", Font.BOLD, 18)); /**************************************************************/ ChartFrame frame = new ChartFrame("统计图 ", chart, true); frame.pack(); frame.setVisible(true); } public static void main(String[] args) { // 3D饼状图 makePieChart3D(); // 3D柱状图 makeBarChart3D(); } }