
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIBasePointMarker3D
@interface SCIBasePointMarker3D
: SCIDisposableBase <ISCIAttachable, ISCIInvalidatableElement>
The base-class for Pointmarkers in SciChart 3D. This is used to repeat a texture or a 3D model at data-points in certain renderable series.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Defines the
SCIMarkerType
for this point marker.Declaration
Objective-C
@property (nonatomic) SCIMarkerType markerType;
-
Defines the fill color used by point marker.
Declaration
Objective-C
@property (nonatomic) unsigned int fillColor;
-
Defines the size of the point marker.
Declaration
Objective-C
@property (nonatomic) float size;
-
Creates a new instance of
SCIBasePointMarker3D
class.Declaration
Objective-C
- (instancetype)initWithMarkerType:(SCIMarkerType)markerType;
Parameters
markerType
The type of point marker.