iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFixedErrorBarsSeriesInfo
@interface SCIFixedErrorBarsSeriesInfo : SCIXySeriesInfo
Defines Series Info class for SCIFixedErrorBarsSeriesInfo
-
The parent renderable series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIFastFixedErrorBarsRenderableSeries *_Nonnull renderableSeries;Swift
var renderableSeries: SCIFastFixedErrorBarsRenderableSeries { get } -
The
High Valueat thehit-testsite.Declaration
Objective-C
@property (nonatomic, strong, nullable) id<ISCIComparable> highValue;Swift
var highValue: (any ISCIComparable)? { get set } -
The
Low Valueat thehit-testsite.Declaration
Objective-C
@property (nonatomic, strong, nullable) id<ISCIComparable> lowValue;Swift
var lowValue: (any ISCIComparable)? { get set } -
Gets the formatted
highValue.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedHighValue;Swift
var formattedHighValue: any ISCIString { get } -
Gets the formatted
lowValue.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedLowValue;Swift
var formattedLowValue: any ISCIString { get } -
Creates a new instance of
SCIFixedErrorBarsSeriesInfoclass.Declaration
Objective-C
- (nonnull instancetype)initWithSeries: (nonnull SCIFastFixedErrorBarsRenderableSeries *)series;Swift
init(series: SCIFastFixedErrorBarsRenderableSeries)Parameters
seriesThe parent associated renderable series.
View on GitHub