iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFastLineRenderableSeries
@interface SCIFastLineRenderableSeries : SCIXyRenderableSeriesBase
Defines a Line renderable series, supporting solid, stroked (thickness 1+) lines, dashed lines and optional Point-markers ISCIRenderableSeries.pointMarker
.
-
Gets or sets a value indicating whether this line series has a
digital (step) line
.Declaration
Objective-C
@property (nonatomic) BOOL isDigitalLine;
Swift
var isDigitalLine: Bool { get set }
-
Creates a new instance of
SCIFastLineRenderableSeries
class.Declaration
Objective-C
- (nonnull instancetype)init;
Swift
convenience init()
-
Creates a new instance of
SCIFastLineRenderableSeries
class.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData:(nonnull SCILineRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;
Swift
init(renderPassData: SCILineRenderPassData, hitProvider: ISCIHitProvider, nearestPointProvider: ISCINearestPointProvider)
Parameters
renderPassData
The render pass data instance.
hitProvider
The hit provider instance.
nearestPointProvider
The nearest point provider instance.