iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIStackedSeriesRenderPassData
@interface SCIStackedSeriesRenderPassData : SCIXyRenderPassData
Defines the ISCISeriesRenderPassData, the data used in a single render pass by ISCIStackedRenderableSeries inheritors.
-
Defines the stroke thickness of stacked series lines.
Note
used internally, to take it into account while updating drawing coordinates.Declaration
Objective-C
@property (nonatomic) float strokeThickness;Swift
var strokeThickness: Float { get set } -
Provides the collection of previous series
Y-Valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull prevSeriesYValues;Swift
var prevSeriesYValues: SCIDoubleValues { get set } -
Provides the collection of previous series
Y-Coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull prevSeriesYCoords;Swift
var prevSeriesYCoords: SCIFloatValues { get set } -
Ends update of this render pass data for stacked data.
Declaration
Objective-C
- (void)onEndStackedDataUpdate;Swift
func onEndStackedDataUpdate()
View on GitHub