资源简介
Java 曲线图 jfreechart。
含jar包,直接运行,注释全。

代码片段和文件信息
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.labels.StandardXYToolTipGenerator;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.data.xy.XYDataset;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
//用java生成各种图形,比如柱状图、曲线图、条形图、饼图
public class JavaCreateMap {
// 生成曲线图
private void createQXT(String title String dataName1 String dataName2 String xtitle String ytitleString filePath) {
try {
XYSeries xyseries = new XYSeries(dataName1);
XYSeries xyseries1 = new XYSeries(dataName2);
XYSeriesCollection xyseriescollection = new XYSeriesCollection();//数据集
double count1 = 1;
double count2 = 1;
for (int i = 0; i < 31; i++) {//表示该图片有31行数据
String data1 = ““+(i+1);
String data2 = ““+(i+2);
for (int j = 0; j < 2; j++) {//每行2跳数据
if (j == 0) {
xyseries.add(count1 Double.parseDouble(data1));
count1++;
}
if (j == 1) {
xyseries1.add(count2 Double.parseDouble(data2));
count2++;
}
}
}
xyseriescollection.addSeries(xyseries);
xyseriescollection.addSeries(xyseries1);
JFreeChart chart = createChart(xyseriescollection title xtitle ytitle); // 标题、x轴标题、y轴标题
chart.setBackgroundPaint(Color.white); // 设置背景色
chart.setBorderVisible(false); // 设置不边框
XYPlot plot = (XYPlot) chart.getPlot();
//saveChartAsJPEG:表示保存为jpeg格式的图片
ChartUtilities.saveChartAsJPEG(new File(filePath) chart 800 500);//宽800高500
} catch (IOException e) {
e.printStackTrace();
}
}
public static JFreeChart createChart(XYDataset xydataset String title String xtitle String ytitle) {
JFreeChart jfreechart = ChartFactory.createXYLineChart(title xtitle ytitle xydataset
PlotOrientation.VERTICAL true true false);
XYPlot xyplot = (XYPlot) jfreechart.getPlot();
XYLineAndShapeRenderer xylineandshaperenderer = new XYLineAndShapeRenderer();
xylineandshaperenderer.setSeriesStroke(0 new BasicStroke(2.0F 1 1 1.0F new float[] { 6F 6F } 0.0F));
xylineandshaperenderer.setSeriesStroke(1 new BasicStroke(2.0F 1 1 1.0F null 0.0F));
xylineandshaperenderer.setbaseToolTipGenerator(new StandardXYToolTipGenerator());
xylineandshaperenderer.setItemLabelFont(new Font(“黑体“ Font.TRUETYPE_FONT 24));// 设置字体
xyplot.setRenderer(xylineandshaperenderer);
NumberAxis numberaxis = (NumberAxis) xyplot.getRangeAxis();
numberaxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
return jfreechart;
}
public static void main(String[] args)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 106680 2012-10-24 11:04 --Java生成曲线图--\aa.jpeg
文件 3654 2012-10-24 11:16 --Java生成曲线图--\JavaCreateMap.java
文件 307860 2012-09-27 22:25 --Java生成曲线图--\jcommon-1.0.13.jar
文件 1311979 2012-09-27 22:25 --Java生成曲线图--\jfreechart-1.0.10.jar
目录 0 2012-10-24 11:17 --Java生成曲线图--
----------- --------- ---------- ----- ----
1730173 5
相关资源
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
评论
共有 条评论