iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCISplineXyyRenderPassData
@interface SCISplineXyyRenderPassData : SCIXyyRenderPassData
Defines the ISCISeriesRenderPassData, the data used in a single render pass by Spline Renderable Series, that extends SCIXyyRenderableSeriesBase.
-
Provides the collection of
XA-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xaCoords;Swift
var xaCoords: SCIFloatValues { get set } -
Provides the collection of
YA-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull yaCoords;Swift
var yaCoords: SCIFloatValues { get set } -
Provides the collection of
XB-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xbCoords;Swift
var xbCoords: SCIFloatValues { get set } -
Provides the collection of
YB-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull ybCoords;Swift
var ybCoords: SCIFloatValues { get set } -
Provides the collection of
XA1-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xa1Coords;Swift
var xa1Coords: SCIFloatValues { get set } -
Provides the collection of
YA1-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull ya1Coords;Swift
var ya1Coords: SCIFloatValues { get set } -
Provides the collection of
XB1-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xb1Coords;Swift
var xb1Coords: SCIFloatValues { get set } -
Provides the collection of
YB1-coordinatesfor the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull yb1Coords;Swift
var yb1Coords: SCIFloatValues { get set } -
Creates a new instance of
SCISplineXyyRenderPassDataclass.Declaration
Objective-C
- (nonnull instancetype)initWithControlPointsProvider: (nonnull id<ISCIBezierControlPointsProvider>)bezierControlPointsProvider;Swift
init(controlPointsProvider bezierControlPointsProvider: any ISCIBezierControlPointsProvider)Parameters
bezierControlPointsProviderThe provider of control points for bezier curves to draw.
View on GitHub