iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIOhlcRenderPassData
@interface SCIOhlcRenderPassData : SCIXSeriesRenderPassData
Defines the ISCISeriesRenderPassData, the data used in a single render pass by SCIOhlcRenderableSeriesBase.
-
Provides the collection of
open-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull openValues;Swift
var openValues: SCIDoubleValues { get set } -
Provides the collection of
high-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull highValues;Swift
var highValues: SCIDoubleValues { get set } -
Provides the collection of
low-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull lowValues;Swift
var lowValues: SCIDoubleValues { get set } -
Provides the collection of
close-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull closeValues;Swift
var closeValues: SCIDoubleValues { get set } -
Provides the collection of
open-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull openCoords;Swift
var openCoords: SCIFloatValues { get set } -
Provides the collection of
high-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull highCoords;Swift
var highCoords: SCIFloatValues { get set } -
Provides the collection of
low-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull lowCoords;Swift
var lowCoords: SCIFloatValues { get set } -
Provides the collection of
close-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull closeCoords;Swift
var closeCoords: SCIFloatValues { get set } -
Defines the value in pixels that determines each
Candlestickwidth.Declaration
Objective-C
@property (nonatomic) float dataPointWidthPx;Swift
var dataPointWidthPx: Float { get set }
View on GitHub