iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCICylindroidDataSeries3D
@interface SCICylindroidDataSeries3D : SCIXzDisplaceableFreeSurfaceDataSeries3D
Data Series that defines the Cylindroid in 3-Dimensional space.
-
The A component of the Cylindroid.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> a; -
The B component of the Cylindroid.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> b; -
The height of the Cylindroid.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> h; -
Creates a new instance of
SCICylindroidDataSeries3D.Declaration
Objective-C
- (nonnull instancetype)initWithXZType:(SCIDataType)xzType yType:(SCIDataType)yType uSize:(NSInteger)uSize vSize:(NSInteger)vSize;Swift
convenience init(xzType: SCIDataType, yType: SCIDataType, uSize: Int, vSize: Int)Parameters
xzTypeThe type used for X and Z data.
yTypeThe type used for Y data.
uSizeThe U dimension of 2D grid.
vSizeThe V dimension of 2D grid.
-
Creates a new instance of
SCICylindroidDataSeries3D.Declaration
Objective-C
- (nonnull instancetype)initWithXZType:(SCIDataType)xzType yType:(SCIDataType)yType uSize:(NSInteger)uSize vSize:(NSInteger)vSize uMin:(double)uMin uMax:(double)uMax vMin:(double)vMin vMax:(double)vMax;Swift
init(xzType: SCIDataType, yType: SCIDataType, uSize: Int, vSize: Int, uMin: Double, uMax: Double, vMin: Double, vMax: Double)Parameters
xzTypeThe type used for X and Z data.
yTypeThe type used for Y data.
uSizeThe U dimension of 2D grid.
vSizeThe V dimension of 2D grid.
uMinThe minimum value of U component of the 2D grid.
uMaxThe maximum value of U component of the 2D grid.
vMinThe minimum value of V component of the 2D grid.
vMaxThe maximum value of V component of the 2D grid.
View on GitHub