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-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull openValues;

    Swift

    var openValues: SCIDoubleValues { get set }
  • Provides the collection of high-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull highValues;

    Swift

    var highValues: SCIDoubleValues { get set }
  • Provides the collection of low-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull lowValues;

    Swift

    var lowValues: SCIDoubleValues { get set }
  • Provides the collection of close-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull closeValues;

    Swift

    var closeValues: SCIDoubleValues { get set }
  • Provides the collection of open-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull openCoords;

    Swift

    var openCoords: SCIFloatValues { get set }
  • Provides the collection of high-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull highCoords;

    Swift

    var highCoords: SCIFloatValues { get set }
  • Provides the collection of low-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull lowCoords;

    Swift

    var lowCoords: SCIFloatValues { get set }
  • Provides the collection of close-values for 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 Candlestick width.

    Declaration

    Objective-C

    @property (nonatomic) float dataPointWidthPx;

    Swift

    var dataPointWidthPx: Float { get set }