java中使用JFreeChart生成饼图和曲线图(横坐标字符串)

2024-02-15 01:48

本文主要是介绍java中使用JFreeChart生成饼图和曲线图(横坐标字符串),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近项目中有个需求要根据不同的数据,生成一个饼图,用来表示各部分的占比情况,测试了很多,最后发现JFreeChart最简便实用,下面是具体实现过程

1,pom文件中添加jar包的引用

org.jfree jfreechart 1.0.19 2,创建生成图片的方法

public class JFreeChartUtil {
public static void main(String[] args) {
DefaultPieDataset pds = new DefaultPieDataset();
pds.setValue(“00点-04点”, 100);
pds.setValue(“04点-08点”, 200);
pds.setValue(“08点-12点”, 300);
pds.setValue(“12点-16点”, 400);
pds.setValue(“16点-20点”, 500);
pds.setValue(“20点-24点”, 600);
String filePath = “d:/pie.jpg”;
createPieChart(pds,filePath);
}

public static void createPieChart(DefaultPieDataset pds, String filePath) {try {// 分别是:显示图表的标题、需要提供对应图表的DateSet对象、是否显示图例、是否生成贴士以及是否生成URL链接JFreeChart chart = ChartFactory.createPieChart("今日放屁次数:时间段分布图", pds, false, false, true);// 如果不使用Font,中文将显示不出来Font font = new Font("宋体", Font.BOLD, 12);// 设置图片标题的字体chart.getTitle().setFont(font);// 得到图块,准备设置标签的字体PiePlot plot = (PiePlot) chart.getPlot();// 设置标签字体plot.setLabelFont(font);plot.setStartAngle(new Float(3.14f / 2f));// 设置plot的前景色透明度plot.setForegroundAlpha(0.7f);// 设置plot的背景色透明度plot.setBackgroundAlpha(0.0f);// 设置标签生成器(默认{0})// {0}:key {1}:value {2}:百分比 {3}:sumplot.setLabelGenerator(new StandardPieSectionLabelGenerator("{0}({1}占{2})"));// 将内存中的图片写到本地硬盘ChartUtilities.saveChartAsJPEG(new File(filePath), chart, 600, 300);} catch (Exception e) {e.printStackTrace();}  
}

}
3,生成的效果图如下:

在这里插入图片描述

4,生成折线图的代码

public class JFreeChartUtil {
public static void main(String[] args) {
DefaultCategoryDataset ds = new DefaultCategoryDataset();
ds.setValue(10, “ibm”, “2018-05-21”);
ds.setValue(20, “ibm”, “2018-05-22”);
ds.setValue(32, “ibm”, “2018-05-23”);
ds.setValue(25, “ibm”, “2018-05-24”);
ds.setValue(0, “ibm”, “2018-05-25”);
ds.setValue(4, “ibm”, “2018-05-26”);
ds.setValue(32, “ibm”, “2018-05-27”);
ds.setValue(0, “ibm”, “2018-05-28”);
ds.setValue(358, “ibm”, “2018-05-29”);
ds.setValue(4, “ibm”, “2018-05-30”);
String filePath = “d:/lgg.jpg”;
createPieChart(pds,filePath);
}

public static void createLineChart(DefaultCategoryDataset ds, String filePath) {
try {
// 创建柱状图.标题,X坐标,Y坐标,数据集合,orientation,是否显示legend,是否显示tooltip,是否使用url链接
JFreeChart chart = ChartFactory.createLineChart(“近30天每日放屁次数趋势图”, “”, “次数”, ds, PlotOrientation.VERTICAL,false, true, true);
chart.setBackgroundPaint(Color.WHITE);
Font font = new Font(“宋体”, Font.BOLD, 12);
chart.getTitle().setFont(font);
chart.setBackgroundPaint(Color.WHITE);
// 配置字体(解决中文乱码的通用方法)
Font xfont = new Font(“仿宋”, Font.BOLD, 12); // X轴
Font yfont = new Font(“宋体”, Font.BOLD, 12); // Y轴
Font titleFont = new Font(“宋体”, Font.BOLD, 12); // 图片标题
CategoryPlot categoryPlot = chart.getCategoryPlot();
categoryPlot.getDomainAxis().setLabelFont(xfont);
categoryPlot.getDomainAxis().setLabelFont(xfont);
categoryPlot.getRangeAxis().setLabelFont(yfont);
chart.getTitle().setFont(titleFont);
categoryPlot.setBackgroundPaint(Color.WHITE);
// x轴 // 分类轴网格是否可见
categoryPlot.setDomainGridlinesVisible(true);
// y轴 //数据轴网格是否可见
categoryPlot.setRangeGridlinesVisible(true);
// 设置网格竖线颜色
categoryPlot.setDomainGridlinePaint(Color.LIGHT_GRAY);
// 设置网格横线颜色
categoryPlot.setRangeGridlinePaint(Color.LIGHT_GRAY);
// 没有数据时显示的文字说明
categoryPlot.setNoDataMessage(“没有数据显示”);
// 设置曲线图与xy轴的距离
categoryPlot.setAxisOffset(new RectangleInsets(0d, 0d, 0d, 0d));
// 设置面板字体
Font labelFont = new Font(“SansSerif”, Font.TRUETYPE_FONT, 12);
// 取得Y轴
NumberAxis rangeAxis = (NumberAxis) categoryPlot.getRangeAxis();
rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
rangeAxis.setAutoRangeIncludesZero(true);
rangeAxis.setUpperMargin(0.20);
rangeAxis.setLabelAngle(Math.PI / 2.0);
// 取得X轴
CategoryAxis categoryAxis = (CategoryAxis) categoryPlot.getDomainAxis();
// 设置X轴坐标上的文字
categoryAxis.setTickLabelFont(labelFont);
// 设置X轴的标题文字
categoryAxis.setLabelFont(labelFont);
// 横轴上的 Lable 45度倾斜
categoryAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_45);
// 设置距离图片左端距离
categoryAxis.setLowerMargin(0.0);
// 设置距离图片右端距离
categoryAxis.setUpperMargin(0.0);
// 获得renderer 注意这里是下嗍造型到lineandshaperenderer!!
LineAndShapeRenderer lineandshaperenderer = (LineAndShapeRenderer) categoryPlot.getRenderer();
// 是否显示折点
lineandshaperenderer.setBaseShapesVisible(true);
// 是否显示折线
lineandshaperenderer.setBaseLinesVisible(true);
// series 点(即数据点)间有连线可见 显示折点数据
lineandshaperenderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator());
lineandshaperenderer.setBaseItemLabelsVisible(true);
ChartUtilities.saveChartAsJPEG(new File(filePath), chart, 1207, 500);
} catch (Exception e) {
e.printStackTrace();
}
}
}
5,效果图如下:

在这里插入图片描述
————————————————
版权声明:本文为CSDN博主「编码小王子」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/u011900448/article/details/80541504

这篇关于java中使用JFreeChart生成饼图和曲线图(横坐标字符串)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/710147

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数