iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIStackedColumnRenderPassData
@interface SCIStackedColumnRenderPassData : SCIStackedSeriesRenderPassData
Defines the ISCISeriesRenderPassData, the data used in a single render pass by SCIStackedColumnRenderableSeries.
-
Defines the value in pixels that determines each
columnwidth.Declaration
Objective-C
@property (nonatomic) float columnPixelWidth;Swift
var columnPixelWidth: Float { get set } -
Gets the array, which provides an information about
X-Valuespositions.Note
Used internally to determine whichX-Valuesdoes haveY-Values, and which doesn’t have them.0if the value exist,-1- if no value at appropriate index.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIIntegerValues *_Nonnull xValuesPositions;Swift
var xValuesPositions: SCIIntegerValues { get } -
Used internally to determine which
X-Valuesdoes haveY-Values, and which doesn’t have them.Declaration
Objective-C
- (void)updateXValuesPositions:(nonnull int *)positions count:(NSInteger)count;Swift
func updateXValuesPositions(_ positions: UnsafeMutablePointer<Int32>, count: Int)Parameters
positionsArray which contains information about the positions of the
x-values.countThe amount of values in the
positionsarray.
View on GitHub