iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIXSeriesRenderPassData
@interface SCIXSeriesRenderPassData : SCISeriesRenderPassData
Defines the ISCISeriesRenderPassData, the data used in a single render pass by SCIRenderableSeriesBase with ISCIXDataSeriesValues.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Provides the collection of
X-valuesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIDoubleValues *_Nonnull xValues;Swift
var xValues: SCIDoubleValues { get set } -
Provides the collection of
X-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xCoords;Swift
var xCoords: SCIFloatValues { get set } -
Provides the collection of
indicesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIIntegerValues *_Nonnull indices;Swift
var indices: SCIIntegerValues { get set }
View on GitHub