在核心图中配置轴

时间:2012-09-18 10:39:32

标签: iphone ios core-plot

以下是图表的截图... 在该图中,y轴的最小值为0(在原点),最大值为700。 我想将mininmum值设置为500,将最大值设置为700。 here is the graph

如何实现? 任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:3)

如果您使用核心情节

,请尝试使用此功能
 CPXYPlotSpace *plotSpace = (CPXYPlotSpace *)graph.defaultPlotSpace;
 plotSpace.yRange = [CPPlotRange plotRangeWithLocation: 500 length:200   ];

答案 1 :(得分:3)

有两个步骤要做,

1. Setting the orthogonalCoordinateDecimal, this is the point where your graph starts

   CPTXYAxis *y = axisSet.yAxis;
   y.orthogonalCoordinateDecimal = CPTDecimalFromFloat(500.0);

2. Setting the plotRange, this is to determine where should the graph start and its range

   CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;   
   plotSpace.yRange = [CPTPlotRange plotRangeWithLocation:500 length:200];