java绘制曲线图

这篇博客介绍了如何使用Java的JFreeChart库来创建一个历史记录曲线图。通过创建DefaultCategoryDataset,定义图表的横纵坐标名称,设置图表样式,并填充数据,最终展示了一个包含三个系列(倾角X轴、倾角Y轴和温度)的数据图表。
摘要由CSDN通过智能技术生成
import javax.swing.JPanel;

import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
public class JFramechart extends ApplicationFrame {
/**
  * 
  */
private static final long serialVersionUID = 1L;
public JFramechart(String s) {
   super(s);
   setContentPane(createDemoLine());
   this.pack();
   RefineryUtilities.centerFrameOnScreen(this);
   this.setVisible(true);
 // this.setDefaultCloseOperation(EXIT_ON_CLOSE);
 }
//public static void main(String[] args) {
//   JFramechart fjc = new JFramechart("折线图",);
//   fjc.pack();
//   RefineryUtilities.centerFrameOnScreen(fjc);
//   fjc.setVisible(true);
//  // fjc.setDefaultCloseOperatio
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值