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

ISCIGridDataSeries3DValues

@protocol ISCIGridDataSeries3DValues <ISCIDataSeries3D>

Defines an interface to 3D GridDataSeries, the data source used for various ISCIRenderableSeries3D.

  • Gets the X Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, readonly) id<ISCIDoubleValuesProvider> _Nonnull xValues;

    Swift

    var xValues: ISCIDoubleValuesProvider { get }
  • Gets the Y Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, readonly) id<ISCIDoubleValuesProvider> _Nonnull yValues;

    Swift

    var yValues: ISCIDoubleValuesProvider { get }
  • Gets the Z Values of this series.

    Declaration

    Objective-C

    @property (nonatomic, readonly) id<ISCIDoubleValuesProvider> _Nonnull zValues;

    Swift

    var zValues: ISCIDoubleValuesProvider { get }
  • Gets the size of 3D grid in X direction.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger xSize;

    Swift

    var xSize: Int { get }
  • Gets the size of 3D grid in Z direction.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger zSize;

    Swift

    var zSize: Int { get }
  • Gets the X value for specified xIndex.

    Declaration

    Objective-C

    - (nonnull id<ISCIComparable>)getXValueAt:(NSInteger)index;

    Parameters

    index

    The index to get X value for.

    Return Value

    The x value.

  • Gets the Y value for specified xIndex and zIndex.

    Declaration

    Objective-C

    - (nonnull id<ISCIComparable>)getYValueAtX:(NSInteger)xIndex
                                        zIndex:(NSInteger)zIndex;

    Parameters

    xIndex

    The xIndex to get Y value for.

    zIndex

    The zIndex to get Y value for.

    Return Value

    The y value.

  • Gets the Z value for specified xIndex.

    Declaration

    Objective-C

    - (nonnull id<ISCIComparable>)getZValueAt:(NSInteger)index;

    Parameters

    index

    The index to get Z value for.

    Return Value

    The z value.