iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIXyzRenderPassData3D

@interface SCIXyzRenderPassData3D : SCIYSeriesRenderPassData3D

Defines SCIXyzRenderPassData3D, the data used in a single render pass by ISCIRenderableSeries3D which has X, Y and Z data.

  • Provides the collection of X-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull xValues;

    Swift

    var xValues: SCIDoubleValues { get set }
  • Provides the collection of Y-values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull zValues;

    Swift

    var zValues: SCIDoubleValues { get set }
  • Provides the collection of X-coordinates for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull xCoords;

    Swift

    var xCoords: SCIFloatValues { get set }
  • Provides the collection of Y-coordinates for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull zCoords;

    Swift

    var zCoords: SCIFloatValues { get set }