
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIBaseColumnRenderableSeries
@interface SCIBaseColumnRenderableSeries : SCIXyRenderableSeriesBase
An abstract base class for column series.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Gets or sets the
SCIBrushStyle
used to fill columns.Declaration
Objective-C
@property (nonatomic, strong) SCIBrushStyle *_Nonnull fillBrushStyle;
-
Gets the
SCITextureMappingMode
which defines how columns are filled when a gradient is used.Declaration
Objective-C
@property (nonatomic) SCITextureMappingMode fillBrushMappingMode;
-
Gets or sets a value between 0.0 and 1.0 which defines the fraction of available space each column should occupy.
Declaration
Objective-C
@property (nonatomic) double dataPointWidth;
-
Creates a new instance of
SCIBaseColumnRenderableSeries
class.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCIXyRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;
Parameters
renderPassData
The render pass data instance.
hitProvider
The hit provider instance.
nearestPointProvider
The nearest point provider instance.