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: any ISCIDoubleValuesProvider { get } -
Gets the Y Values of this series.
Declaration
Objective-C
@property (nonatomic, readonly) id<ISCIDoubleValuesProvider> _Nonnull yValues;Swift
var yValues: any ISCIDoubleValuesProvider { get } -
Gets the Z Values of this series.
Declaration
Objective-C
@property (nonatomic, readonly) id<ISCIDoubleValuesProvider> _Nonnull zValues;Swift
var zValues: any 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
indexThe 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
xIndexThe xIndex to get Y value for.
zIndexThe 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
indexThe index to get Z value for.
Return Value
The z value.
View on GitHub