iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIOhlcRenderableSeriesBase
@interface SCIOhlcRenderableSeriesBase : SCIRenderableSeriesBase
An abstract base class for ISCIOhlcDataSeriesValues based renderable series.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Defines the
SCIPenStyleused for wicks and outlines on up-candles, whenclose > open.Declaration
Objective-C
@property (nonatomic, strong) SCIPenStyle *_Nonnull strokeUpStyle;Swift
var strokeUpStyle: SCIPenStyle { get set } -
Defines the
SCIPenStyleused for wicks and outlines on down-candles, whenclose < open.Declaration
Objective-C
@property (nonatomic, strong) SCIPenStyle *_Nonnull strokeDownStyle;Swift
var strokeDownStyle: SCIPenStyle { get set } -
Gets or sets a value between 0.0 and 1.0 which defines the fraction of available space each column should occupy.
Declaration
Objective-C
@property (nonatomic) double dataPointWidth;Swift
var dataPointWidth: Double { get set } -
Creates a new instance of
SCIOhlcRenderableSeriesBaseclass.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCIOhlcRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;Swift
init(renderPassData: SCIOhlcRenderPassData, hitProvider: any ISCIHitProvider, nearestPointProvider: any ISCINearestPointProvider)Parameters
renderPassDataThe render pass data instance.
hitProviderThe hit provider instance.
nearestPointProviderThe nearest point provider instance.
View on GitHub