
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIXDataSeries
@protocol ISCIXDataSeries <ISCIXDataSeriesValues>
Defines the interface to an X DataSeries, a series containing X data-points.
-
Removes data points at specified location.
Declaration
Objective-C
- (void)removeAt:(NSInteger)index;
Parameters
index
The index of data point to remove.
-
Removes the range of data points.
Declaration
Objective-C
- (void)removeRangeAt:(NSInteger)index count:(NSInteger)count;
Parameters
index
The index of the first data point to remove.
count
The amount of items to remove.