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;
  • Gets or sets the maximum value for this SCIFastUniformHeatmapRenderableSeries.

    Declaration

    Objective-C

    @property (nonatomic) double maximum;
  • Gets or sets the SCIColorMap associated with this SCIFastUniformHeatmapRenderableSeries

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIColorMap *_Nonnull colorMap;
  • Gets or sets the value indicating whether this SCIFastUniformHeatmapRenderableSeries should draw text in heat map cells.

    Declaration

    Objective-C

    @property (nonatomic) BOOL drawTextInCell;
  • Creates a new instance of SCIFastUniformHeatmapRenderableSeries class.

    Declaration

    Objective-C

    - (nonnull instancetype)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;

    Parameters

    renderPassData

    The render pass data instance.

    hitProvider

    The hit provider instance.

    nearestPointProvider

    The nearest point provider instance.