?? dynamicdatademo2.java
字號:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* ---------------------
* DynamicDataDemo2.java
* ---------------------
* (C) Copyright 2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited).
* Contributor(s): -;
*
* $Id: DynamicDataDemo2.java,v 1.1 2003/09/01 13:34:55 mungady Exp $
*
* Changes
* -------
* 01-Sep-2003 : Version 1, based on DynamicDataDemo (DG);
*
*/
package org.jfree.chart.demo;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JPanel;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.Spacer;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.DefaultXYItemRenderer;
import org.jfree.data.time.Millisecond;
import org.jfree.data.time.TimeSeries;
import org.jfree.data.time.TimeSeriesCollection;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
/**
* A demonstration application showing a time series chart where you can dynamically add
* (random) data by clicking on a button.
*
* @author David Gilbert
*/
public class DynamicDataDemo2 extends ApplicationFrame implements ActionListener {
/** Series 1. */
private TimeSeries series1;
/** Series 2. */
private TimeSeries series2;
/** The most recent value added to series 1. */
private double lastValue1 = 100.0;
/** The most recent value added to series 2. */
private double lastValue2 = 500.0;
/**
* Constructs a new demonstration application.
*
* @param title the frame title.
*/
public DynamicDataDemo2(String title) {
super(title);
this.series1 = new TimeSeries("Random 1", Millisecond.class);
this.series2 = new TimeSeries("Random 2", Millisecond.class);
TimeSeriesCollection dataset1 = new TimeSeriesCollection(this.series1);
TimeSeriesCollection dataset2 = new TimeSeriesCollection(this.series2);
JFreeChart chart = ChartFactory.createTimeSeriesChart(
"Dynamic Data Demo 2", "Time", "Value", dataset1, true, true, false
);
chart.setBackgroundPaint(Color.white);
XYPlot plot = chart.getXYPlot();
plot.setBackgroundPaint(Color.lightGray);
plot.setDomainGridlinePaint(Color.white);
plot.setRangeGridlinePaint(Color.white);
plot.setAxisOffset(new Spacer(Spacer.ABSOLUTE, 4, 4, 4, 4));
ValueAxis axis = plot.getDomainAxis();
axis.setAutoRange(true);
axis.setFixedAutoRange(60000.0); // 60 seconds
plot.setSecondaryDataset(0, dataset2);
NumberAxis rangeAxis2 = new NumberAxis("Range Axis 2");
rangeAxis2.setAutoRangeIncludesZero(false);
plot.setSecondaryRenderer(0, new DefaultXYItemRenderer());
plot.setSecondaryRangeAxis(0, rangeAxis2);
plot.mapSecondaryDatasetToRangeAxis(0, new Integer(0));
JPanel content = new JPanel(new BorderLayout());
ChartPanel chartPanel = new ChartPanel(chart);
content.add(chartPanel);
JButton button1 = new JButton("Add To Series 1");
button1.setActionCommand("ADD_DATA_1");
button1.addActionListener(this);
JButton button2 = new JButton("Add To Series 2");
button2.setActionCommand("ADD_DATA_2");
button2.addActionListener(this);
JButton button3 = new JButton("Add To Both");
button3.setActionCommand("ADD_BOTH");
button3.addActionListener(this);
JPanel buttonPanel = new JPanel(new FlowLayout());
buttonPanel.add(button1);
buttonPanel.add(button2);
buttonPanel.add(button3);
content.add(buttonPanel, BorderLayout.SOUTH);
chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
setContentPane(content);
}
/**
* Handles a click on the button by adding new (random) data.
*
* @param e the action event.
*/
public void actionPerformed(ActionEvent e) {
boolean add1 = false;
boolean add2 = false;
if (e.getActionCommand().equals("ADD_DATA_1")) {
add1 = true;
}
else if (e.getActionCommand().equals("ADD_DATA_2")) {
add2 = true;
}
else if (e.getActionCommand().equals("ADD_BOTH")) {
add1 = true;
add2 = true;
}
if (add1) {
double factor = 0.90 + 0.2 * Math.random();
this.lastValue1 = lastValue1 * factor;
Millisecond now = new Millisecond();
System.out.println("Now = " + now.toString());
this.series1.add(new Millisecond(), lastValue1);
}
if (add2) {
double factor = 0.90 + 0.2 * Math.random();
this.lastValue2 = lastValue2 * factor;
Millisecond now = new Millisecond();
System.out.println("Now = " + now.toString());
this.series2.add(new Millisecond(), lastValue2);
}
}
/**
* Starting point for the demonstration application.
*
* @param args ignored.
*/
public static void main(String[] args) {
DynamicDataDemo2 demo = new DynamicDataDemo2("Dynamic Data Demo 2");
demo.pack();
RefineryUtilities.centerFrameOnScreen(demo);
demo.setVisible(true);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -