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 byZ-Unit
.Note
IfautoZrange
is NO,Z-value
is multiplied byzScale
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 theX, 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 }