iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCISmartPropertyFloat

@interface SCISmartPropertyFloat : NSObject

Defines a smart property class which can hold float value.

  • Creates a new instance of SCISmartPropertyFloat class.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDefaultValue:(float)defaultValue;

    Swift

    init(defaultValue: Float)

    Parameters

    defaultValue

    The default value for property.

  • Gets the current property value.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float value;

    Swift

    var value: Float { get }
  • Sets weak value for this property if it was not overridden by -setStrongValue: call.

    Declaration

    Objective-C

    - (void)setWeakValue:(float)newValue;

    Swift

    func setWeakValue(_ newValue: Float)

    Parameters

    newValue

    The new value for property.

  • Sets weak value for this property which overrides any previously set value.

    Declaration

    Objective-C

    - (void)setStrongValue:(float)newValue;

    Swift

    func setStrongValue(_ newValue: Float)

    Parameters

    newValue

    The new value for property.