Shift the origin from (0,0) to (0,50) in JFreeChart
问题 As shown in image the graph is from line y=0, here i want to plot a graph from y=50, how can i specify this in JFreeChart ? Here is Some Code: public class Profile { double last=0; public void generateProfile(int[] pointValue,double[] distance){ ArrayList pv=new ArrayList(); ArrayList dist=new ArrayList(); pv.add(pointValue); dist.add(distance); for(int i=0;i<pv.size();i++){ System.out.print(pointValue[i]); } for(int i=0;i<dist.size();i++){ System.out.print(distance[i]); } XYSeries series =