CPTScatterPlotInterpolationCurved类型无法正常工作

时间:2013-11-08 06:28:53

标签: ios iphone core-plot scatter-plot

我正在使用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 CPTScatterPlotInterpolationLinear

2.使用 CPTScatterPlotInterpolationCurved enter image description here

顶点工作正常,只有底点没有正确设置,请参阅点{(2,0),(3,0)},如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

这是按设计工作的。目标是通过所有数据点获得平滑的曲线,尽可能减少方向的突然变化。

如果您有关于如何改进它的建议,请在Core Plot issue tracker上打开增强请求。