iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCISearchMode
enum SCISearchMode : NSUInteger {}
Enumeration constants to define binary searching of lists.
-
Specifies exact search. If the index is not found, -1 is returned.
Declaration
Objective-C
SCISearchMode_ExactSwift
case exact = 0 -
Specifies the nearest index. This will round up or down if the search is in-between x-values.
Declaration
Objective-C
SCISearchMode_NearestSwift
case nearest = 1 -
Rounds down to the nearest index.
Declaration
Objective-C
SCISearchMode_RoundDownSwift
case roundDown = 2 -
Rounds up to the nearest index.
Declaration
Objective-C
SCISearchMode_RoundUpSwift
case roundUp = 3
View on GitHub