1

我想知道如何在 XY Plot 上的 jfreechart 中绘制线条、点(或小圆圈)、矩形和梯形。它们中的大多数从某个坐标到零范围基线。我必须代表这样的寻根方法:

http://www2.lv.psu.edu/ojj/courses/cmpsc-201/201-images/bisect.jpg

或辛普森的规则是这样的:

http://upload.wikimedia.org/wikipedia/commons/0/08/Simpson_rule.png

我已经有了找到解决方案和绘图的功能,我只需要在某些坐标中绘制形状。我是 jfreechart 和绘图的新手,我一直在寻找方法来做到这一点。

我的情节代码:

import javax.swing.JPanel;
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.chart.plot.XYPlot;

public class Grafica1 {
JFreeChart grafica;
XYSeriesCollection datos=new XYSeriesCollection();
String titulo;
String etiquetax;
String etiquetay;
int cont=1;

public Grafica1(String t, String x, String y){
    titulo=t;
    etiquetax=x;
    etiquetay=y;
    grafica=ChartFactory.createXYLineChart(titulo, x, y, datos, PlotOrientation.VERTICAL, true, true, true);
    XYPlot plot= (XYPlot) grafica.getPlot();
    //plot.setDomainZeroBaselineVisible(true);
    plot.setRangeZeroBaselineVisible(true);
}
public Grafica1(){
    this("Sin título", "x", "y");
}

public void agregarGrafica(String id, double[] x, double[] y){
    XYSeries s=new XYSeries("["+(cont++)+"] "+id);
    int n=x.length;
    for(int i=0;i<n;i++){
        s.add(x[i], y[i]);
    }
    datos.addSeries(s);

}

public void crearGrafica(String id, double[] x, double[] y){
    cont=1;
    datos.removeAllSeries();
    agregarGrafica(id, x, y);

}

public JPanel obtieneGrafica(){
    return new ChartPanel(grafica);
}

}
4

1 回答 1

1

您可以与 结合XYLineAndShapeRenderer使用,如此SwingWorker所示。根据需要使用注释标记

图片

于 2013-07-15T08:37:45.973 回答