iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIMeshSeriesInfo3D
@interface SCIMeshSeriesInfo3D : SCISeriesInfo3D
Defines a class which contains information about a SCIContourMeshRenderableSeries3DBase or inheritor, such as name, value, color based on SCIHitTestInfo3D values.
-
The
x-indexof point which was hit in case of grid data.Declaration
Objective-C
@property (nonatomic) int xIndex;Swift
var xIndex: Int32 { get set } -
The
z-indexof point which was hit in case of grid data.Declaration
Objective-C
@property (nonatomic) int zIndex;Swift
var zIndex: Int32 { get set } -
Creates a new instance of
SCIMeshSeriesInfo3Dclass.Declaration
Objective-C
- (nonnull instancetype)initWithSeries: (nonnull SCIContourMeshRenderableSeries3DBase *)series;Swift
init(series: SCIContourMeshRenderableSeries3DBase)Parameters
seriesThe associated parent
SCIContourMeshRenderableSeries3DBaseseries.
View on GitHub