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 SCIColorMap associated with this SCIFastUniformHeatmapRenderableSeries

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIColorMap *_Nonnull colorMap;

    Swift

    var colorMap: SCIColorMap { get set }
  • Gets or sets the value indicating whether this SCIFastUniformHeatmapRenderableSeries should draw text in heat map cells.

    Declaration

    Objective-C

    @property (nonatomic) BOOL drawTextInCell;

    Swift

    var drawTextInCell: Bool { get set }
  • Creates a new instance of SCIFastUniformHeatmapRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    convenience init()
  • Creates a new instance of SCIFastUniformHeatmapRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithRenderPassData:
            (nonnull SCIUniformHeatmapRenderPassData *)renderPassData
                   hitProvider:(nonnull id<ISCIHitProvider>)hitProvider
          nearestPointProvider:
              (nonnull id<ISCINearestPointProvider>)nearestPointProvider;

    Swift

    init(renderPassData: SCIUniformHeatmapRenderPassData, hitProvider: ISCIHitProvider, nearestPointProvider: ISCINearestPointProvider)

    Parameters

    renderPassData

    The render pass data instance.

    hitProvider

    The hit provider instance.

    nearestPointProvider

    The nearest point provider instance.