iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIChartModifier3D
@protocol ISCIChartModifier3D <ISCIChartModifierCore,
ISCIChartSurface3DChangeListener,
ISCIChartSurface3DProvider>
Definces the interface to a base chart modifier SCIChartModifier3DBase
, which can be used to extend the interactivity or rendering of the surface ISCIChartSurface3D
.
-
Gets the
X-Axis
of the parentISCIChartSurface3D
.Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) id<ISCIAxis3D> xAxis;
Swift
var xAxis: ISCIAxis3D { get }
-
Gets the
Y-Axis
of the parentISCIChartSurface3D
.Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) id<ISCIAxis3D> yAxis;
Swift
var yAxis: ISCIAxis3D { get }
-
Gets the
Z-Axis
of the parentISCIChartSurface3D
.Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) id<ISCIAxis3D> zAxis;
Swift
var zAxis: ISCIAxis3D { get }