
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIAxisCubeEntity
@interface SCIAxisCubeEntity : SCIBaseSceneEntity
Defines an entity which renders an Axis Cube in the 3D scene.
-
Defines whether axis cube is visible or no.
Declaration
Objective-C
@property (nonatomic) BOOL isVisible;
-
Defines the
SCIAxisPlaneVisibility
used to render axis cube.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneVisibility axisPlaneVisibilityMode;
-
Defines the
SCIAxisPlaneDrawLabelsMode
for theXY
axis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode xyAxisPlaneDrawLabelsMode;
-
Defines the
SCIAxisPlaneDrawLabelsMode
for theZY
axis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode zyAxisPlaneDrawLabelsMode;
-
Defines the
SCIAxisPlaneDrawLabelsMode
for theZX
axis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode zxAxisPlaneDrawLabelsMode;
-
Updates entity with data provided by
xAxis
,yAxis
andzAxis
.Declaration
Objective-C
- (void)updateXAxis:(nonnull id<ISCIAxis3D>)xAxis yAxis:(nonnull id<ISCIAxis3D>)yAxis zAxis:(nonnull id<ISCIAxis3D>)zAxis;
Parameters
xAxis
The xAxis to use for update.
yAxis
The yAxis to use for update.
zAxis
The zAxis to use for update.