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

SCISeriesInfoCore

@interface SCISeriesInfoCore : NSObject <ISCICleanable>

Defines the core base class which contains information about series throughout the SciChart SDK.

Warning

Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.
  • The parent renderable series

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIRenderableSeriesCore> _Nonnull renderableSeries;
  • The color of the renderable series associated with this series info

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *_Nonnull seriesColor;
  • The name of the ISCIDataSeries associated with this series info.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *seriesName;
  • The value indicating whether the HitTest operation was a hit or not

    Declaration

    Objective-C

    @property (nonatomic) BOOL isHit;
  • Gets the value indicating whehter the parent renderable series is visible or not.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isVisible;
  • Creates a new instance of SCISeriesInfoCore class.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithSeries:
        (nonnull id<ISCIRenderableSeriesCore>)series;

    Parameters

    series

    The parent renderable series.