Coreplot Framework を使用して折れ線グラフを作成していますが、
CPTScatterPlot *plot = [[CPTScatterPlot alloc] init];
plot.dataSource = self;
plot.identifier = @"mainplot";
plot.dataLineStyle = lineStyle_;
plot.plotSymbol = plotSymbol;
plot.interpolation = CPTScatterPlotInterpolationCurved;
[self.graph addPlot:plot];
私が使用している場合CPTScatterPlotInterpolationLinear
、ポイントはグラフで正しく結合されていますがCPTScatterPlotInterpolationCurved
、ポイントはグラフで正しく設定されていません
1. CPTScatterPlotInterpolationLinear の使用
2.CPTScatterPlotInterpolationCurvedの使用
上のポイントは正しく機能していますが、下のポイントのみが正しく設定されていません。ポイント { (2,0),(3,0)} を参照してください。この問題を解決するには?