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
SCIMarkerTypefor this point marker.Declaration
Objective-C
@property (nonatomic) SCIMarkerType markerType;Swift
var markerType: SCIMarkerType { get set } -
Defines the fill color used by point marker.
Declaration
Objective-C
@property (nonatomic) unsigned int fillColor;Swift
var fillColor: UInt32 { get set } -
Defines the size of the point marker.
Declaration
Objective-C
@property (nonatomic) float size;Swift
var size: Float { get set } -
Creates a new instance of
SCIBasePointMarker3Dclass.Declaration
Objective-C
- (instancetype)initWithMarkerType:(SCIMarkerType)markerType;Swift
init!(markerType: SCIMarkerType)Parameters
markerTypeThe type of point marker.
View on GitHub