目前,当我运行此代码时,它向我显示了如上所示的图形,我想绘制一个已显示的图形。目前,它绘制的图形关于(0,0)对称,我认为从(0,-3)或(0,
当前代码:

public class Profile  {



    double last=0;
    ChartFrame frame1;
    JToolBar jt=new JToolBar();
    public void generateProfile(int[] pointValue,double[] distance){
        ArrayList pv=new ArrayList();
        ArrayList dist=new ArrayList();

        pv.add(pointValue);
        dist.add(distance);
        int min=pointValue[0];
        for(int i=0;i<pv.size();i++){
            //System.out.print(pointValue[i]);
            if(pointValue[i]<min){
                min=pointValue[i];
            }
        }
        for(int i=0;i<dist.size();i++){
            System.out.print(distance[i]);
        }


        XYSeries series = new XYSeries("Average Weight");
        for(int i=0;i<pointValue.length;i++){
            //if(pointValue[i]!=0){
              series.add(last,pointValue[i]);
              last=distance[i];
            //}
         }


      XYDataset xyDataset = new XYSeriesCollection(series);
      JFreeChart chart= ChartFactory.createXYAreaChart("Profile View Of Contour", "Distance", "Contour Value", xyDataset, PlotOrientation.VERTICAL, true, true, false);
      ValueAxis rangeAxis = chart.getXYPlot().getRangeAxis();
      rangeAxis.setLowerBound(-3);
      frame1=new ChartFrame("XYLine Chart",chart);

      JButton saveimg=new JButton(new AbstractAction("Save as Image"){
            public void actionPerformed(ActionEvent e) {
                //some other lines of code...
            }
      });
      jt.add(saveimg);
      frame1.add(jt, BorderLayout.NORTH);
      frame1.setVisible(true);
      frame1.setSize(300,300);
    }



    public static void main(String ar[]){
        Profile pro=new Profile();
        int[] pv={2,3,0,5,-2,10};
        double[] dist={1,4,8,12,14,20};
        pro.generateProfile(pv, dist);



    }
}

最佳答案

XYAreaRenderer当前不支持此功能。但是,实现这一点并不难。看一下XYAreaRenderer.drawItem()方法的代码。在此方法中,存在使用实际零值(0.0)计算的局部变量transZero。如果仅将0.0替换为其他值,则可能会满足您的需要。

实现此目的的最简单方法是创建自己的渲染器,该渲染器从XYAreaRenderer派生并覆盖drawItem()。在这种方法中,如上所述,复制原始代码并进行修改。

然后,您只需要通过编写以下内容来使用此新渲染器:

XYAreaRenderer yourNewRenderer = ...; /* initialize here */
chart.getXYPlot().setRender(yourNewRenderer);

08-05 04:22