我正在使用 Coreplot 框架创建折线图,
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)},如何解决此问题?