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

SCIBubbleRenderPassData

@interface SCIBubbleRenderPassData : SCIXyzRenderPassData

Defines the ISCISeriesRenderPassData, the data used in a single render pass by SCIFastBubbleRenderableSeries.

  • Defines a Z-scaling factor, equal to Pixels divided by Z-Unit.

    Note

    If autoZrange is NO, Z-value is multiplied by zScale is bubble radius in pixels.

    Declaration

    Objective-C

    @property (nonatomic) float zScaleFactor;

    Swift

    var zScaleFactor: Float { get set }
  • Defines whether Z-range should be automatically scaled. If YES - then depending on the X, Y, Z points in the viewport, the size of bubbles will be scaled to fit. Else, the size of bubbles will be absolute.

    Declaration

    Objective-C

    @property (nonatomic) BOOL autoZRange;

    Swift

    var autoZRange: Bool { get set }