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.

  • a

    The A component of the polar data series.

    Declaration

    Objective-C

    @property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> a;
  • b

    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

    polarType

    The type used for polar data.

    heightType

    The type used for height data.

    uSize

    The U dimension of 2D grid.

    vSize

    The V dimension of 2D grid.

    uMin

    The minimum value of U component of the 2D grid.

    uMax

    The maximum value of U component of the 2D grid.