heatmap-cluster
Version:
The Unipept visualisation library
11 lines (10 loc) • 353 B
TypeScript
/**
* A HeatmapValue denotes a single datapoint in a matrix of input values. The rowId and columnId fields of this value
* will be filled in by the Heatmap itself (based upon the current row/column this value is situated in).
*/
export default interface HeatmapValue {
value: number;
rowId: number;
columnId: number;
color: string;
}