iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIPolarDataSeries3D
@interface SCIPolarDataSeries3D : SCIYDispsplaceableFreeSurfaceDataSeries3D
Data Series that defines the polar chart in 3D space.
-
The A component of the polar data series.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> a; -
The B component of the polar data series.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> b; -
Creates a new instance of
SCIPolarDataSeries3D.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)polarType heightType:(SCIDataType)heightType uSize:(NSInteger)uSize vSize:(NSInteger)vSize uMin:(double)uMin uMax:(double)uMax;Swift
init(xType polarType: SCIDataType, heightType: SCIDataType, uSize: Int, vSize: Int, uMin: Double, uMax: Double)Parameters
polarTypeThe type used for polar data.
heightTypeThe type used for height 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.
View on GitHub