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
SCIBrushStyleused to fill columns.Declaration
Objective-C
@property (nonatomic, strong) SCIBrushStyle *_Nonnull fillBrushStyle;Swift
var fillBrushStyle: SCIBrushStyle { get set } -
Gets the
SCITextureMappingModewhich defines how columns are filled when a gradient is used.Declaration
Objective-C
@property (nonatomic) SCITextureMappingMode fillBrushMappingMode;Swift
var fillBrushMappingMode: SCITextureMappingMode { get set } -
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;Swift
var dataPointWidth: Double { get set } -
Creates a new instance of
SCIBaseColumnRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCIXyRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;Swift
init(renderPassData: SCIXyRenderPassData, hitProvider: any ISCIHitProvider, nearestPointProvider: any ISCINearestPointProvider)Parameters
renderPassDataThe render pass data instance.
hitProviderThe hit provider instance.
nearestPointProviderThe nearest point provider instance.
View on GitHub