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;Swift
var isVisible: Bool { get set } -
Defines the
SCIAxisPlaneVisibilityused to render axis cube.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneVisibility axisPlaneVisibilityMode;Swift
var axisPlaneVisibilityMode: SCIAxisPlaneVisibility { get set } -
Defines the
SCIAxisPlaneDrawLabelsModefor theXYaxis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode xyAxisPlaneDrawLabelsMode;Swift
var xyAxisPlaneDrawLabelsMode: SCIAxisPlaneDrawLabelsMode { get set } -
Defines the
SCIAxisPlaneDrawLabelsModefor theZYaxis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode zyAxisPlaneDrawLabelsMode;Swift
var zyAxisPlaneDrawLabelsMode: SCIAxisPlaneDrawLabelsMode { get set } -
Defines the
SCIAxisPlaneDrawLabelsModefor theZXaxis plane.Declaration
Objective-C
@property (nonatomic) SCIAxisPlaneDrawLabelsMode zxAxisPlaneDrawLabelsMode;Swift
var zxAxisPlaneDrawLabelsMode: SCIAxisPlaneDrawLabelsMode { get set } -
Updates entity with data provided by
xAxis,yAxisandzAxis.Declaration
Objective-C
- (void)updateXAxis:(nonnull id<ISCIAxis3D>)xAxis yAxis:(nonnull id<ISCIAxis3D>)yAxis zAxis:(nonnull id<ISCIAxis3D>)zAxis;Swift
func updateXAxis(_ xAxis: any ISCIAxis3D, yAxis: any ISCIAxis3D, zAxis: any ISCIAxis3D)Parameters
xAxisThe xAxis to use for update.
yAxisThe yAxis to use for update.
zAxisThe zAxis to use for update.
View on GitHub