
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_Exact
-
Specifies the nearest index. This will round up or down if the search is in-between x-values.
Declaration
Objective-C
SCISearchMode_Nearest
-
Rounds down to the nearest index.
Declaration
Objective-C
SCISearchMode_RoundDown
-
Rounds up to the nearest index.
Declaration
Objective-C
SCISearchMode_RoundUp