import java.awt.Color;
import java.awt.Font;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.CategoryAxis;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.labels.ItemLabelAnchor;
import org.jfree.chart.labels.ItemLabelPosition;
import org.jfree.chart.labels.StandardCategoryItemLabelGenerator;
import org.jfree.chart.labels.StandardPieSectionLabelGenerator;
import org.jfree.chart.labels.StandardXYItemLabelGenerator;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PiePlot3D;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.category.BarRenderer3D;
import org.jfree.chart.renderer.xy.XYItemRenderer;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.ui.RectangleInsets;
import org.jfree.ui.TextAnchor;
import org.jfree.util.Rotation;
public class JFreeChartUtil {
/* 折线图样式 */
public static void timeSeriesStyle(JFreeChart chart) {
XYPlot plot = chart.getXYPlot();
/* 设置曲线显示各数据点的值 */
XYLineAndShapeRenderer xylineandshaperenderer = (XYLineAndShapeRenderer)plot.getRenderer();
//设置网格背景颜色
plot.setBackgroundPaint(Color.white);
//设置网格竖线颜色
plot.setDomainGridlinePaint(Color.pink);
//设置网格横线颜色
plot.setRangeGridlinePaint(Color.pink);
//设置曲线图与xy轴的距离
plot.setAxisOffset(new RectangleInsets(0D, 0D, 0D, 10D));
//设置曲线是否显示数据点
xylineandshaperenderer.setBaseShapesVisible(true);
//设置曲线显示各数据点的值
XYItemRenderer xyitem = plot.getRenderer();
// xyitem.setBaseItemLabelsVisible(true);
xyitem.setBasePositiveItemLabelPosition(new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12, TextAnchor.BASELINE_LEFT));
xyitem.setBaseItemLabelGenerator(new StandardXYItemLabelGenerator());
xyitem.setBaseItemLabelFont(new Font("Dialog", 1, 14));
plot.setRenderer(xyitem);
// 中文处理乱码
Font xfont = new Font("宋体",Font.PLAIN,12) ;// X轴
Font yfont = new Font("宋体",Font.PLAIN,12) ;// Y轴
// X 轴
ValueAxis domainAxis = plot.getDomainAxis();
domainAxis.setLabelFont(xfont);// 轴标题
domainAxis.setTickLabelFont(xfont);// 轴数值
domainAxis.setTickLabelPaint(Color.BLUE) ; // 字体颜色
// Y 轴
ValueAxis rangeAxis = plot.getRangeAxis();
rangeAxis.setLabelFont(yfont);
rangeAxis.setLabelPaint(Color.BLUE) ; // 字体颜色
rangeAxis.setTickLabelFont(yfont);
// 底部
chart.getLegend().setItemFont( new Font("宋体",Font.PLAIN,12));
}
/* 饼图样式 */
public static void piePlot3DStyle(JFreeChart chart) {
PiePlot3D plot = (PiePlot3D) chart.getPlot();
plot.setLabelFont(new Font("宋体", 0, 12));
// 图片中显示百分比:默认方式
//plot.setLabelGenerator(new StandardPieSectionLabelGenerator(StandardPieToolTipGenerator.DEFAULT_TOOLTIP_FORMAT));
// 图片中显示百分比:自定义方式,{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})"));
// 设置背景色为白色
chart.setBackgroundPaint(Color.white);
// 指定图片的透明度(0.0-1.0)
// plot.setForegroundAlpha(1.0f);
//设置透明度,0.5F为半透明,1为不透明,0为全透明
plot.setForegroundAlpha(0.5F);
// 指定显示的饼图上圆形(false)还椭圆形(true)
plot.setCircular(true);
//设置开始角度
plot.setStartAngle(40D);
//设置方向为”顺时针方向“
plot.setDirection(Rotation.CLOCKWISE);
plot.setInteriorGap(0.0D);//[7]
//没有数据的时候显示的内容
plot.setNoDataMessage("无数据显示");
plot.setNoDataMessageFont(new Font("宋体", 0, 12));
plot.setLabelGap(0.02D);
// 设置饼图背景色
plot.setBackgroundPaint(Color.white);
}
/* 柱状图样式 */
public static void barChart3DStyle(JFreeChart chart) {
CategoryPlot plot = chart.getCategoryPlot();
NumberAxis numberaxis = (NumberAxis) plot.getRangeAxis();
CategoryAxis domainAxis = plot.getDomainAxis();
/*------设置X轴坐标上的文字-----------*/
// domainAxis.setTickLabelFont(new Font("sans-serif", Font.PLAIN, 11));
domainAxis.setTickLabelFont(new Font("宋体", Font.PLAIN, 11));
/*------设置X轴的标题文字------------*/
domainAxis.setLabelFont(new Font("宋体", Font.PLAIN, 12));
/*------设置Y轴坐标上的文字-----------*/
// numberaxis.setTickLabelFont(new Font("sans-serif", Font.PLAIN, 12));
numberaxis.setTickLabelFont(new Font("宋体", Font.PLAIN, 12));
/*------设置Y轴的标题文字------------*/
numberaxis.setLabelFont(new Font("宋体", Font.PLAIN, 12));
/*------这句代码解决了底部汉字乱码的问题-----------*/
chart.getLegend().setItemFont(new Font("宋体", Font.PLAIN, 12));
//设置网格背景颜色
plot.setBackgroundPaint(Color.white);
//设置网格竖线颜色
plot.setDomainGridlinePaint(Color.pink);
//设置网格横线颜色
plot.setRangeGridlinePaint(Color.pink);
//显示每个柱的数值,并修改该数值的字体属性
BarRenderer3D renderer = new BarRenderer3D();
renderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator());
renderer.setBaseItemLabelsVisible(true);
//设置 底部分类 不显示
renderer.setBaseSeriesVisibleInLegend(false);
//默认的数字显示在柱子中,通过如下两句可调整数字的显示
//注意:此句很关键,若无此句,那数字的显示会被覆盖,给人数字没有显示出来的问题
renderer.setBasePositiveItemLabelPosition(new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12, TextAnchor.BASELINE_LEFT));
renderer.setItemLabelAnchorOffset(10D);
renderer.setItemLabelFont(new Font("宋体", Font.PLAIN, 12));
renderer.setItemLabelsVisible(true);
//设置每个地区所包含的平行柱的之间距离
renderer.setItemMargin(0.3);
plot.setRenderer(renderer);
//设置地区、销量的显示位置
//将下方的“年”放到上方
// plot.setDomainAxisLocation(AxisLocation.TOP_OR_RIGHT);
//将默认放在左边的“人数”放到右方
// plot.setRangeAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
}
}
附件 JFreeChartTest.jar 是我调试各种图形的例子,包含 2D饼图 分离 、双折线图 。
附件 jfreechart.zip 是网上收集的文档,自己加入了些参考的URL。
分享到:
相关推荐
jfreechart-1.5.2.jar,jfreechart|jfreechart
jfreechart(包jfreechart(包含jfreechart.jar和jcommon-1.0.13.jar) jfreechart(包含jfreechart.jar和jcommon-1.0.13.jar) jfreechart(包含jfreechart.jar和jcommon-1.0.13.jar) jfreechart(包含jfreechart.jar和...
JFreeChart的强大之处在于其高度的可定制性。开发者可以通过调整各种属性来改变图表的颜色、线条样式、填充效果等视觉元素。同时,JFreeChart支持多种输出格式,包括PNG、JPEG、PDF、SVG等,方便在不同的应用场景中...
**JFreeChart** 是一个广泛使用的Java库,用于创建高质量的图表,包括折线图、柱状图、饼图、散点图等。它在Java应用程序、Web应用、报告和移动应用中都有广泛应用。JFreeChart支持多种图表类型,允许自定义颜色、...
JFreeChart双Y轴折线图实例,可以直接运行,实例类为LineChartDemo1.JAVA,有注释。 若想在web工程使用只需如下。 String filename = ServletUtilities.saveChartAsPNG(jfreechart, 600, 400, null, session); ...
JFreeChart-FX 版本2.0.1,2021年2月21日 概述 的JFreeChart-FX是延期允许的JFreeChart在JavaFX应用程序中使用。 包括 要将JFreeChart-FX包含在您的应用程序中: <groupId>org.jfree <artifactId>org.jfree....
JFreeChart-未来状态版(FSE) 这是JFreeChart的开发版本,已从JFreeChart 1.0.x系列分支而来。 以下是一些重要说明: API已经更改,并且将继续更改,直到我(和其他贡献者)感到可以冻结了-可能需要6个月,也可能...
《JFreeChart_A3:基于Java的图表软件测试实践》 在Java开发中,数据可视化是一个重要的环节,它能够帮助我们更好地理解复杂的数据,并通过图形化的方式进行展示。JFreeChart是一个强大的开源库,用于创建各种高...
**正文** JFreeChart 是一个强大的 Java 图形库,它为开发者提供了丰富的图表类型,包括柱状图、...其丰富的图表类型、自定义选项以及便捷的图像输出功能,使得它成为 Java 开发者在数据图形化领域的首选工具之一。
jfreechart 是一个流行的Java图表库,用于生成各种类型的图表,包括柱状图、饼图、折线图等。下面是 jfreechart 的一些重要知识点: 1、jfreechart 的优点: jfreechart 是一个功能强大、灵活的图表库,具有以下...
2:使用ChartFactory 的多个工厂方法,createXXXChart来创建统计图表,统计图标就是一个JFreeChart对象 3:得到JFreeChart对象后,可以调用setTitle来修改统计图标的标题。或者调用getLegend方法来指定图标用例,...
这个开源项目由JFreeChart公司维护,并在SourceForge.net上发布,是Java图形解决方案的首选之一。JFreeChart不仅提供了丰富的图表类型,还支持在Web浏览器上展示,克服了传统报表系统与Web应用之间用户界面的限制。 ...
### JFreeChart与Eclipse集成应用详解 #### 引言 在数据分析与可视化领域,图表作为数据呈现的重要手段,能够直观地展现复杂数据关系,帮助用户快速理解数据背后的故事。JFreeChart,作为一款功能强大的Java图表...
jfreechart绘制的风速风向玫瑰图 jfreechart是Java中一个流行的图表库,它提供了许多种类的图表,包括柱状图、折线图、饼图、雷达图等。本文主要介绍如何使用jfreechart绘制风速风向玫瑰图。 首先,了解jfreechart...
**JFreeChart与Cewolf:构建可视化报表的关键组件** 在Java开发中,生成美观且具有交互性的图表对于数据可视化和报表制作至关重要。JFreeChart和Cewolf是两个强大的开源库,它们共同为开发者提供了丰富的图形生成和...