これがグラフのスクリーンショットです...このグラフでは、y軸の最小値は0(原点)で、最大値は700です.最小値を500に、最大値を700に設定したい.
それはどのように達成できますか?? どんな助けでも大歓迎です。
コア プロットを使用している場合は、これを使用してみてください
CPXYPlotSpace *plotSpace = (CPXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.yRange = [CPPlotRange plotRangeWithLocation: 500 length:200 ];
実行する手順は 2 つあります。
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];