From 023054bc62ca607879081d24056c2247d939f423 Mon Sep 17 00:00:00 2001 From: Liam Stanley Date: Wed, 9 Sep 2020 00:53:17 -0400 Subject: [PATCH] heatmap: reduce the aggressiveness of hiding ticks/labels (#27016) --- public/app/plugins/panel/heatmap/rendering.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/heatmap/rendering.ts b/public/app/plugins/panel/heatmap/rendering.ts index 00774df7c73..48264645bdf 100644 --- a/public/app/plugins/panel/heatmap/rendering.ts +++ b/public/app/plugins/panel/heatmap/rendering.ts @@ -23,7 +23,7 @@ const MIN_CARD_SIZE = 1, CARD_ROUND = 0, DATA_RANGE_WIDING_FACTOR = 1.2, DEFAULT_X_TICK_SIZE_PX = 100, - DEFAULT_Y_TICK_SIZE_PX = 50, + DEFAULT_Y_TICK_SIZE_PX = 22.5, X_AXIS_TICK_PADDING = 10, Y_AXIS_TICK_PADDING = 5, MIN_SELECTION_WIDTH = 2;