iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFastMountainRenderableSeries
@interface SCIFastMountainRenderableSeries : SCIBaseMountainRenderableSeries
Provides Fast Mountain (Area) series rendering, however makes the assumption that all X-Data is evenly spaced. Gaps in the data are collapsed
-
Gets or sets a value indicating whether this mountain series has a
digital (step) line.Declaration
Objective-C
@property (nonatomic) BOOL isDigitalLine;Swift
var isDigitalLine: Bool { get set } -
Creates a new instance of
SCIFastMountainRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype)init;Swift
convenience init() -
Creates a new instance of
SCIFastMountainRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCIMountainRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;Swift
init(renderPassData: SCIMountainRenderPassData, hitProvider: any ISCIHitProvider, nearestPointProvider: any ISCINearestPointProvider)Parameters
renderPassDataThe render pass data instance.
hitProviderThe hit provider instance.
nearestPointProviderThe nearest point provider instance.
View on GitHub