web-dev-qa-db-ja.com

Javaを使用したXYプロット

Java-具体的にはxyプロット)でプロットに関する情報を見つけようとしています。 Javaライブラリですが、どのライブラリを使用するのが簡単か、既存のアプリケーションに統合するのが難しいかどうかはわかりません。

私が出会ったのは:JFreeChartとJOpenChartです。

また、このリストの一部を見てきました(すべてにXYプロット機能があるわけではありません): 10 Excellent Free Open Source Java Developer for Chart Library

これらのいずれかを使用した経験のある人は、どちらが使用方法を学ぶのが最も簡単/最も速いかを知っていますか?

13
redhotspike

私はjfreechartをさまざまなソリューションに100回使用しました。Java2s.comには開発者ガイドとより多くの簡単なチュートリアルがあるため、簡単に習得できます。それをグーグルで探せばもっとたくさん見つかるでしょうXYシリーズのデモがあります

 package org.jfree.chart.demo;

 import org.jfree.chart.ChartFactory;
 import org.jfree.chart.ChartPanel;
 import org.jfree.chart.JFreeChart;
 import org.jfree.chart.plot.PlotOrientation;
 import org.jfree.data.xy.XYSeries;
 import org.jfree.data.xy.XYSeriesCollection;
 import org.jfree.ui.ApplicationFrame;
 import org.jfree.ui.RefineryUtilities;


public class XYSeriesDemo extends ApplicationFrame {

/**
 * A demonstration application showing an XY series containing a null value.
 *
 * @param title  the frame title.
 */
public XYSeriesDemo(final String title) {

    super(title);
    final XYSeries series = new XYSeries("Random Data");
    series.add(1.0, 500.2);
    series.add(5.0, 694.1);
    series.add(4.0, 100.0);
    series.add(12.5, 734.4);
    series.add(17.3, 453.2);
    series.add(21.2, 500.2);
    series.add(21.9, null);
    series.add(25.6, 734.4);
    series.add(30.0, 453.2);
    final XYSeriesCollection data = new XYSeriesCollection(series);
    final JFreeChart chart = ChartFactory.createXYLineChart(
        "XY Series Demo",
        "X", 
        "Y", 
        data,
        PlotOrientation.VERTICAL,
        true,
        true,
        false
    );

    final ChartPanel chartPanel = new ChartPanel(chart);
    chartPanel.setPreferredSize(new Java.awt.Dimension(500, 270));
    setContentPane(chartPanel);

}

// ****************************************************************************
// * JFREECHART DEVELOPER GUIDE                                               *
// * The JFreeChart Developer Guide, written by David Gilbert, is available   *
// * to purchase from Object Refinery Limited:                                *
// *                                                                          *
// * http://www.object-refinery.com/jfreechart/guide.html                     *
// *                                                                          *
// * Sales are used to provide funding for the JFreeChart project - please    * 
// * support us so that we can continue developing free software.             *
// ****************************************************************************

/**
 * Starting point for the demonstration application.
 *
 * @param args  ignored.
 */
public static void main(final String[] args) {

    final XYSeriesDemo demo = new XYSeriesDemo("XY Series Demo");
    demo.pack();
    RefineryUtilities.centerFrameOnScreen(demo);
    demo.setVisible(true);

}

}

enter image description here

18
Neo

私はAndroid特定のライブラリを使用しましたが、私はJFreeChartで良い経験をしたと言うことができます。サンプルコードとWeb周りのチュートリアルを含むデモ、および優れたサポートフォーラムがあります。

1
zgc7009