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

SCIBandSeriesInfo

@interface SCIBandSeriesInfo : SCISeriesInfo

Defines Series Info class for SCIFastBandRenderableSeriesBase.

  • The parent renderable series.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) SCIFastBandRenderableSeries *_Nonnull renderableSeries;

    Swift

    var renderableSeries: SCIFastBandRenderableSeries { get }
  • TheX Value at the hit-test site.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) id<ISCIComparable> xValue;

    Swift

    var xValue: ISCIComparable? { get set }
  • The Y Value at the hit-test site.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) id<ISCIComparable> yValue;

    Swift

    var yValue: ISCIComparable? { get set }
  • The Y1 Value at the hit-test site.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) id<ISCIComparable> y1Value;

    Swift

    var y1Value: ISCIComparable? { get set }
  • A point snapped to the X-Y1 value of the series.

    Declaration

    Objective-C

    @property (nonatomic) CGPoint xy1Coordinate;

    Swift

    var xy1Coordinate: CGPoint { get set }
  • The color of the Y1 series associated with this series info

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *_Nonnull y1SeriesColor;

    Swift

    var y1SeriesColor: UIColor { get set }
  • Gets the formatted xValue.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedXValue;

    Swift

    var formattedXValue: ISCIString { get }
  • Gets the formatted yValue.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedYValue;

    Swift

    var formattedYValue: ISCIString { get }
  • Gets the formatted y1Value.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<ISCIString> _Nonnull formattedY1Value;

    Swift

    var formattedY1Value: ISCIString { get }