
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
column
width.Declaration
Objective-C
@property (nonatomic) float columnPixelWidth;
-
Gets the array, which provides an information about
X-Values
positions.Note
Used internally to determine whichX-Values
does haveY-Values
, and which doesn’t have them.0
if the value exist,-1
- if no value at appropriate index.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIIntegerValues *_Nonnull xValuesPositions;
-
Used internally to determine which
X-Values
does haveY-Values
, and which doesn’t have them.Declaration
Objective-C
- (void)updateXValuesPositions:(nonnull int *)positions count:(NSInteger)count;
Parameters
positions
Array which contains information about the positions of the
x-values
.count
The amount of values in the
positions
array.