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 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
SCIUniformHeatmapDataSeriesinstance.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
xTypeThe type of
X-Data.yTypeThe type of
Y-Data.zTypeThe type of
Z-Data.xSizeThe size of the heatmap data in x-direction.
ySizeThe size of the heatmap data in y-direction.
View on GitHub