iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIBandSeriesInfo
@interface SCIBandSeriesInfo : SCISeriesInfo
Defines Series Info class for SCIFastBandRenderableSeriesBase.
-
The parent renderable series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIFastBandRenderableSeries *_Nonnull renderableSeries;Swift
var renderableSeries: SCIFastBandRenderableSeries { get } -
The
X Valueat thehit-testsite.Declaration
Objective-C
@property (nonatomic, strong, nullable) id<ISCIComparable> xValue;Swift
var xValue: (any ISCIComparable)? { get set } -
The
Y Valueat thehit-testsite.Declaration
Objective-C
@property (nonatomic, strong, nullable) id<ISCIComparable> yValue;Swift
var yValue: (any ISCIComparable)? { get set } -
The
Y1 Valueat thehit-testsite.Declaration
Objective-C
@property (nonatomic, strong, nullable) id<ISCIComparable> y1Value;Swift
var y1Value: (any ISCIComparable)? { get set } -
A point snapped to the X-Y1 value of the series.
Declaration
Objective-C
@property (nonatomic) CGPoint xy1Coordinate;Swift
var xy1Coordinate: CGPoint { get set } -
The color of the Y1 series associated with this series info
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull y1SeriesColor;Swift
var y1SeriesColor: UIColor { get set } -
Gets the formatted
xValue.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedXValue;Swift
var formattedXValue: any ISCIString { get } -
Gets the formatted
yValue.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedYValue;Swift
var formattedYValue: any ISCIString { get } -
Gets the formatted
y1Value.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedY1Value;Swift
var formattedY1Value: any ISCIString { get }
View on GitHub