iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIFastFixedErrorBarsRenderableSeries

@interface SCIFastFixedErrorBarsRenderableSeries : SCIXyRenderableSeriesBase

Provides Fast Error Bars rendering with fixed low and high errors.

  • Gets or sets the SCIPenStyle for low error stroke.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIPenStyle *_Nonnull strokeLowStyle;

    Swift

    var strokeLowStyle: SCIPenStyle { get set }
  • Gets or sets the SCIPenStyle for low error stroke.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIPenStyle *_Nonnull strokeHighStyle;

    Swift

    var strokeHighStyle: SCIPenStyle { get set }
  • Gets or sets the SCIErrorDirection value for this series.

    Declaration

    Objective-C

    @property (nonatomic) SCIErrorDirection errorDirection;

    Swift

    var errorDirection: SCIErrorDirection { get set }
  • Gets or sets the SCIErrorMode value for this series.

    Declaration

    Objective-C

    @property (nonatomic) SCIErrorMode errorMode;

    Swift

    var errorMode: SCIErrorMode { get set }
  • Gets 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 }
  • Gets or sets the SCIErrorType value for this series.

    Declaration

    Objective-C

    @property (nonatomic) SCIErrorType errorType;

    Swift

    var errorType: SCIErrorType { get set }
  • Gets or sets the error low value for this series.

    Declaration

    Objective-C

    @property (nonatomic) double errorLow;

    Swift

    var errorLow: Double { get set }
  • Gets or sets the error high value for this series.

    Declaration

    Objective-C

    @property (nonatomic) double errorHigh;

    Swift

    var errorHigh: Double { get set }
  • Creates a new instance of SCIFastFixedErrorBarsRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Parameters

    renderPassData

    The render pass data instance.

    hitProvider

    The hit provider instance.

    nearestPointProvider

    The nearest point provider instance.