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

SCIStackedSeriesRenderPassData

@interface SCIStackedSeriesRenderPassData : SCIXyRenderPassData

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

  • Defines the stroke thickness of stacked series lines.

    Note

    used internally, to take it into account while updating drawing coordinates.

    Declaration

    Objective-C

    @property (nonatomic) float strokeThickness;
  • Provides the collection of previous series Y-Values for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIDoubleValues *_Nonnull prevSeriesYValues;
  • Provides the collection of previous series Y-Coordinates for the single render pass.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIFloatValues *_Nonnull prevSeriesYCoords;
  • Ends update of this render pass data for stacked data.

    Declaration

    Objective-C

    - (void)onEndStackedDataUpdate;