iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIAnnotationCreationArgs
@interface SCIAnnotationCreationArgs : NSObject
/// The annotation that was created
@property (nonatomic, strong, readonly) SCIAnnotationBase *createdAnnotation;
/// Creates a new instance of AnnotationCreationArgs
/// @param annotation The annotation that was created
- (instancetype)initWithAnnotation:(SCIAnnotationBase *)annotation;
@end
Undocumented
-
The annotation that was created
Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIAnnotationBase *_Nonnull createdAnnotation;Swift
var createdAnnotation: SCIAnnotationBase { get } -
Creates a new instance of AnnotationCreationArgs
Declaration
Objective-C
- (nonnull instancetype)initWithAnnotation: (nonnull SCIAnnotationBase *)annotation;Swift
init(annotation: SCIAnnotationBase)Parameters
annotationThe annotation that was created
View on GitHub