
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIOhlcDataSeriesValues
@protocol ISCIOhlcDataSeriesValues <ISCIXDataSeriesValues>
Defines the interface to an OHLC DataSeries values, a series containing Open
, High
, Low
, Close
data-points.
-
Gets the Open Values of this series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIList> _Nonnull openValues;
-
Gets the High Values of this series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIList> _Nonnull highValues;
-
Gets the Low Values of this series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIList> _Nonnull lowValues;
-
Gets the Close Values of this series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIList> _Nonnull closeValues;