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
SCIPenStylefor low error stroke.Declaration
Objective-C
@property (nonatomic, strong) SCIPenStyle *_Nonnull strokeLowStyle;Swift
var strokeLowStyle: SCIPenStyle { get set } -
Gets or sets the
SCIPenStylefor low error stroke.Declaration
Objective-C
@property (nonatomic, strong) SCIPenStyle *_Nonnull strokeHighStyle;Swift
var strokeHighStyle: SCIPenStyle { get set } -
Gets or sets the
SCIErrorDirectionvalue for this series.Declaration
Objective-C
@property (nonatomic) SCIErrorDirection errorDirection;Swift
var errorDirection: SCIErrorDirection { get set } -
Gets or sets the
SCIErrorModevalue 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
SCIErrorTypevalue 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
SCIFastFixedErrorBarsRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype)init;Swift
convenience init() -
Creates a new instance of
SCIFastFixedErrorBarsRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCIErrorBarsRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;Swift
init(renderPassData: SCIErrorBarsRenderPassData, hitProvider: any ISCIHitProvider, nearestPointProvider: any ISCINearestPointProvider)Parameters
renderPassDataThe render pass data instance.
hitProviderThe hit provider instance.
nearestPointProviderThe nearest point provider instance.
View on GitHub