iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIPointMetadata3D
@interface SCIPointMetadata3D : NSObject
Defines a class which hold metadata for single point.
-
Gets the vertex color to use for rendering of point.
Declaration
Objective-C
@property (nonatomic, readonly) unsigned int vertexColor;Swift
var vertexColor: UInt32 { get } -
Gets the scale to use for rendering of point.
Declaration
Objective-C
@property (nonatomic, readonly) unsigned int scale;Swift
var scale: UInt32 { get } -
Creates a new instance of
SCIPointMetadata3Dclass.Declaration
Objective-C
- (nonnull instancetype)initWithVertexColor:(unsigned int)color;Swift
init(vertexColor color: UInt32)Parameters
colorThe vertex color to use for rendering of point.
-
Creates a new instance of
SCIPointMetadata3Dclass.Declaration
Objective-C
- (nonnull instancetype)initWithVertexColor:(unsigned int)color andScale:(float)scale;Swift
init(vertexColor color: UInt32, andScale scale: Float)Parameters
colorThe vertex color to use for rendering of point.
scaleThe scale to use for rendering of point.
View on GitHub