Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有CPTScatterPlot大量数据。我发现我可以通过使用doubleForPlot而不是numberForPlot在 CorePlot 中来减少内存开销(从而减少时间)。
CPTScatterPlot
doubleForPlot
numberForPlot
但是在使用时,如果缺少某些数据,numberForPlot我可以选择返回。nil然后,CorePlot 将在图中中断,而不连接相邻点。
nil
使用时也可以doubleForPlot吗?是否有一些我可以返回的特殊价值,CorePlot 会将其视为缺失点?
谢谢埃里克!;)
返回NAN缺失值。
NAN
你试过一个空的c数组吗?理论上应该有效。
-(double *)doublesForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndexRange:(NSRange)indexRange;