HeatmapNG: consolidate frame types & fix color ranging (#51089)

* rename yZeroDisplay -> yMinDisplay
* remove heatmap-cells-sparse frame type
* parse x bucket size to millis
* take into account hideLE & hideGE filters to auto-range color scale
* extract cell value range scanning to heatmapData
This commit is contained in:
Leon Sorokin
2022-06-20 15:38:13 -05:00
committed by GitHub
parent c2aee2b6da
commit f4f31b40fd
13 changed files with 424 additions and 369 deletions

View File

@@ -26,11 +26,4 @@ export enum DataFrameType {
* If the y value is actually ordinal, use `meta.custom` to specify the bucket lookup values
*/
HeatmapCells = 'heatmap-cells',
/**
* WIP sparse heatmap support
*
* @private
*/
HeatmapSparse = 'heatmap-cells-sparse',
}