
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;
-
Gets or sets the
SCIPenStyle
for low error stroke.Declaration
Objective-C
@property (nonatomic, strong) SCIPenStyle *_Nonnull strokeHighStyle;
-
Gets or sets the
SCIErrorDirection
value for this series.Declaration
Objective-C
@property (nonatomic) SCIErrorDirection errorDirection;
-
Gets or sets the
SCIErrorMode
value for this series.Declaration
Objective-C
@property (nonatomic) SCIErrorMode errorMode;
-
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;
-
Gets or sets the
SCIErrorType
value for this series.Declaration
Objective-C
@property (nonatomic) SCIErrorType errorType;
-
Gets or sets the error low value for this series.
Declaration
Objective-C
@property (nonatomic) double errorLow;
-
Gets or sets the error high value for this series.
Declaration
Objective-C
@property (nonatomic) double errorHigh;
-
Creates a new instance of
SCIFastFixedErrorBarsRenderableSeries
class.Declaration
Objective-C
- (nonnull instancetype)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;
Parameters
renderPassData
The render pass data instance.
hitProvider
The hit provider instance.
nearestPointProvider
The nearest point provider instance.