
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;
-
Gets the scale to use for rendering of point.
Declaration
Objective-C
@property (nonatomic, readonly) unsigned int scale;
-
Creates a new instance of
SCIPointMetadata3D
class.Declaration
Objective-C
- (nonnull instancetype)initWithVertexColor:(unsigned int)color;
Parameters
color
The vertex color to use for rendering of point.
-
Creates a new instance of
SCIPointMetadata3D
class.Declaration
Objective-C
- (nonnull instancetype)initWithVertexColor:(unsigned int)color andScale:(float)scale;
Parameters
color
The vertex color to use for rendering of point.
scale
The scale to use for rendering of point.