
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-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xaCoords;
-
Provides the collection of
YA-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull yaCoords;
-
Provides the collection of
XB-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xbCoords;
-
Provides the collection of
YB-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull ybCoords;
-
Provides the collection of
XA1-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xa1Coords;
-
Provides the collection of
YA1-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull ya1Coords;
-
Provides the collection of
XB1-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull xb1Coords;
-
Provides the collection of
YB1-coordinates
for the single render pass.Declaration
Objective-C
@property (nonatomic, strong) SCIFloatValues *_Nonnull yb1Coords;
-
Creates a new instance of
SCISplineXyyRenderPassData
class.Declaration
Objective-C
- (nonnull instancetype)initWithControlPointsProvider: (nonnull id<ISCIBezierControlPointsProvider>)bezierControlPointsProvider;
Parameters
bezierControlPointsProvider
The provider of control points for bezier curves to draw.