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 SCIFastMountainRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    convenience init()
  • Creates a new instance of SCIFastMountainRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithRenderPassData:(nonnull SCIMountainRenderPassData *)renderPassData
                   hitProvider:(nonnull id<ISCIHitProvider>)hitProvider
          nearestPointProvider:
              (nonnull id<ISCINearestPointProvider>)nearestPointProvider;

    Swift

    init(renderPassData: SCIMountainRenderPassData, hitProvider: ISCIHitProvider, nearestPointProvider: ISCINearestPointProvider)

    Parameters

    renderPassData

    The render pass data instance.

    hitProvider

    The hit provider instance.

    nearestPointProvider

    The nearest point provider instance.