iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIUniformHeatmapDataSeries

@interface SCIUniformHeatmapDataSeries
    : SCIDataSeries <ISCIUniformHeatmapDataSeries> {
  SCIDataType _zType;
  id<ISCIMath> _zMath;
  NSInteger _xSize;
  NSInteger _ySize;
  NSInteger _count;
}

A data series to store uniform heatmap data, containing X, Y and Z values.

  • Defines the type of the Z-Data.

    Declaration

    Objective-C

    SCIDataType _zType
  • Provides the ISCIMath instance for operations with Z-Data.

    Declaration

    Objective-C

    id<ISCIMath> _zMath
  • Provides the size of 2D heatmap data in X-direction.

    Declaration

    Objective-C

    NSInteger _xSize
  • Provides the size of 2D heatmap data in Y-direction.

    Declaration

    Objective-C

    NSInteger _ySize
  • Provides the number of points in this series.

    Declaration

    Objective-C

    NSInteger _count
  • Creates a new SCIUniformHeatmapDataSeries instance.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithXType:(SCIDataType)xType
                                    yType:(SCIDataType)yType
                                    zType:(SCIDataType)zType
                                    xSize:(NSInteger)xSize
                                    ySize:(NSInteger)ySize;

    Swift

    init(xType: SCIDataType, yType: SCIDataType, zType: SCIDataType, xSize: Int, ySize: Int)

    Parameters

    xType

    The type of X-Data.

    yType

    The type of Y-Data.

    zType

    The type of Z-Data.

    xSize

    The size of the heatmap data in x-direction.

    ySize

    The size of the heatmap data in y-direction.