iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFastUniformHeatmapRenderableSeries
@interface SCIFastUniformHeatmapRenderableSeries : SCIRenderableSeriesBase
Displays 2D data as an uniform heat map.
-
Gets or sets the minimum value for this
SCIFastUniformHeatmapRenderableSeries.Declaration
Objective-C
@property (nonatomic) double minimum;Swift
var minimum: Double { get set } -
Gets or sets the maximum value for this
SCIFastUniformHeatmapRenderableSeries.Declaration
Objective-C
@property (nonatomic) double maximum;Swift
var maximum: Double { get set } -
Gets or sets the
SCIColorMapassociated with thisSCIFastUniformHeatmapRenderableSeriesDeclaration
Objective-C
@property (nonatomic, strong) SCIColorMap *_Nonnull colorMap;Swift
var colorMap: SCIColorMap { get set } -
Gets or sets the value indicating whether this
SCIFastUniformHeatmapRenderableSeriesshould draw text in heat map cells.Declaration
Objective-C
@property (nonatomic) BOOL drawTextInCell;Swift
var drawTextInCell: Bool { get set } -
Creates a new instance of
SCIFastUniformHeatmapRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype)init;Swift
convenience init() -
Creates a new instance of
SCIFastUniformHeatmapRenderableSeriesclass.Declaration
Objective-C
- (nonnull instancetype) initWithRenderPassData: (nonnull SCIUniformHeatmapRenderPassData *)renderPassData hitProvider:(nonnull id<ISCIHitProvider>)hitProvider nearestPointProvider: (nonnull id<ISCINearestPointProvider>)nearestPointProvider;Swift
init(renderPassData: SCIUniformHeatmapRenderPassData, hitProvider: any ISCIHitProvider, nearestPointProvider: any ISCINearestPointProvider)Parameters
renderPassDataThe render pass data instance.
hitProviderThe hit provider instance.
nearestPointProviderThe nearest point provider instance.
View on GitHub