JFreeChart :时间序列图演示1 :修改的渲染显示填充形状 : 时间序列图 « 统计图 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 统计图 » 时间序列图屏幕截图 
JFreeChart :时间序列图演示1 :修改的渲染显示填充形状
JFreeChart :时间序列图演示1 :修改的渲染显示填充形状


/* ===========================================================
 * JFreeChart : a free chart library for the Java(tm) platform
 * ===========================================================
 *
 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
 *
 * Project Info:  http://www.jfree.org/jfreechart/index.html
 *
 * 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.
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 *
 * -------------------------
 * TimeSeriesChartDemo1.java
 * -------------------------
 * (C) Copyright 2003-2005, by Object Refinery Limited and Contributors.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   ;
 *
 * $Id: TimeSeriesChartDemo1.java,v 1.2 2005/03/28 19:38:45 mungady Exp $
 *
 * Changes
 * -------
 * 09-Mar-2005 : Version 1, copied from the demo collection that ships with
 *               the JFreeChart Developer Guide (DG);
 *
 */

package org.jfree.chart.demo;

import java.awt.Color;
import java.text.SimpleDateFormat;

import javax.swing.JPanel;

import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.DateAxis;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.XYItemRenderer;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.data.time.Month;
import org.jfree.data.time.TimeSeries;
import org.jfree.data.time.TimeSeriesCollection;
import org.jfree.data.xy.XYDataset;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RectangleInsets;
import org.jfree.ui.RefineryUtilities;

/**
 * An example of a time series chart.  For the most part, default settings are 
 * used, except that the renderer is modified to show filled shapes (as well as 
 * lines) at each data point.
 */
public class TimeSeriesChartDemo1 extends ApplicationFrame {

    /**
     * A demonstration application showing how to create a simple time series 
     * chart.  This example uses monthly data.
     *
     @param title  the frame title.
     */
    public TimeSeriesChartDemo1(String title) {
        super(title);
        XYDataset dataset = createDataset();
        JFreeChart chart = createChart(dataset);
        ChartPanel chartPanel = new ChartPanel(chart, false);
        chartPanel.setPreferredSize(new java.awt.Dimension(500270));
        chartPanel.setMouseZoomable(true, false);
        setContentPane(chartPanel);
    }

    /**
     * Creates a chart.
     
     @param dataset  a dataset.
     
     @return A chart.
     */
    private static JFreeChart createChart(XYDataset dataset) {

        JFreeChart chart = ChartFactory.createTimeSeriesChart(
            "Legal & General Unit Trust Prices",  // title
            "Date",             // x-axis label
            "Price Per Unit",   // y-axis label
            dataset,            // data
            true,               // create legend?
            true,               // generate tooltips?
            false               // generate URLs?
        );

        chart.setBackgroundPaint(Color.white);

        XYPlot plot = (XYPlotchart.getPlot();
        plot.setBackgroundPaint(Color.lightGray);
        plot.setDomainGridlinePaint(Color.white);
        plot.setRangeGridlinePaint(Color.white);
        plot.setAxisOffset(new RectangleInsets(5.05.05.05.0));
        plot.setDomainCrosshairVisible(true);
        plot.setRangeCrosshairVisible(true);
        
        XYItemRenderer r = plot.getRenderer();
        if (instanceof XYLineAndShapeRenderer) {
            XYLineAndShapeRenderer renderer = (XYLineAndShapeRendererr;
            renderer.setDefaultShapesVisible(true);
            renderer.setDefaultShapesFilled(true);
        }
        
        DateAxis axis = (DateAxisplot.getDomainAxis();
        axis.setDateFormatOverride(new SimpleDateFormat("MMM-yyyy"));
        
        return chart;

    }
    
    /**
     * Creates a dataset, consisting of two series of monthly data.
     *
     @return The dataset.
     */
    private static XYDataset createDataset() {

        TimeSeries s1 = new TimeSeries("L&G European Index Trust", Month.class);
        s1.add(new Month(22001)181.8);
        s1.add(new Month(32001)167.3);
        s1.add(new Month(42001)153.8);
        s1.add(new Month(52001)167.6);
        s1.add(new Month(62001)158.8);
        s1.add(new Month(72001)148.3);
        s1.add(new Month(82001)153.9);
        s1.add(new Month(92001)142.7);
        s1.add(new Month(102001)123.2);
        s1.add(new Month(112001)131.8);
        s1.add(new Month(122001)139.6);
        s1.add(new Month(12002)142.9);
        s1.add(new Month(22002)138.7);
        s1.add(new Month(32002)137.3);
        s1.add(new Month(42002)143.9);
        s1.add(new Month(52002)139.8);
        s1.add(new Month(62002)137.0);
        s1.add(new Month(72002)132.8);

        TimeSeries s2 = new TimeSeries("L&G UK Index Trust", Month.class);
        s2.add(new Month(22001)129.6);
        s2.add(new Month(32001)123.2);
        s2.add(new Month(42001)117.2);
        s2.add(new Month(52001)124.1);
        s2.add(new Month(62001)122.6);
        s2.add(new Month(72001)119.2);
        s2.add(new Month(82001)116.5);
        s2.add(new Month(92001)112.7);
        s2.add(new Month(102001)101.5);
        s2.add(new Month(112001)106.1);
        s2.add(new Month(122001)110.3);
        s2.add(new Month(12002)111.7);
        s2.add(new Month(22002)111.0);
        s2.add(new Month(32002)109.6);
        s2.add(new Month(42002)113.2);
        s2.add(new Month(52002)111.6);
        s2.add(new Month(62002)108.8);
        s2.add(new Month(72002)101.6);

        TimeSeriesCollection dataset = new TimeSeriesCollection();
        dataset.addSeries(s1);
        dataset.addSeries(s2);

        dataset.setDomainIsPointsInTime(true);

        return dataset;

    }

    /**
     * Creates a panel for the demo (used by SuperDemo.java).
     
     @return A panel.
     */
    public static JPanel createDemoPanel() {
        JFreeChart chart = createChart(createDataset());
        return new ChartPanel(chart);
    }
    
    /**
     * Starting point for the demonstration application.
     *
     @param args  ignored.
     */
    public static void main(String[] args) {

        TimeSeriesChartDemo1 demo = new TimeSeriesChartDemo1(
            "Time Series Chart Demo 1"
        );
        demo.pack();
        RefineryUtilities.centerFrameOnScreen(demo);
        demo.setVisible(true);

    }

}

           
       
jfreechart-1.0.0-rc1.zip( 3,559 k)
Related examples in the same category
1. A time series chart, representing data from an XYDataset, use of multiple chart titlesA time series chart, representing data from an XYDataset, use of multiple chart titles
2. A time series chart, representing data from an XYDataset, ,the vertical axis has a logarithmic scaleA time series chart, representing data from an XYDataset, ,the vertical axis has a logarithmic scale
3. 时间序列图与移动平均线时间序列图与移动平均线
4. JFreeChart :事件频演示JFreeChart :事件频演示
5. JFreeChart :标记演示1JFreeChart :标记演示1
6. JFreeChart :时间序列演示JFreeChart :时间序列演示
7. JFreeChart :时间序列演示10每分钟数据JFreeChart :时间序列演示10每分钟数据
8. JFreeChart :时间序列演示12JFreeChart :时间序列演示12
9. JFreeChart :时间序列演示13 :两个图表,使用每周数据JFreeChart :时间序列演示13 :两个图表,使用每周数据
10. JFreeChart :时间序列演示2季度数据JFreeChart :时间序列演示2季度数据
11. JFreeChart :时间序列演示4小时的数据和使用,包括空值JFreeChart :时间序列演示4小时的数据和使用,包括空值
12. JFreeChart :时间序列演示5 4000的数据点JFreeChart :时间序列演示5 4000的数据点
13. JFreeChart :时间序列演示6与所有零数据JFreeChart :时间序列演示6与所有零数据
14. JFreeChart :时间序列演示7JFreeChart :时间序列演示7
15. JFreeChart :时间序列演示8JFreeChart :时间序列演示8
16. JFreeChart :时间序列演示9JFreeChart :时间序列演示9
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.