Heatmap fixes (adapted for v4.4.x branch) (#8920)

* heatmap: fix converting error when series contains 0 and log scale is selected, issue #8884

* heatmap: fix app crash when Y min set to 0 with log scale

* heatmap: fix tooltip for 'zero' buckets in log scale

* heatmap: fix tooltip histogram for log scales

* heatmap: fix flicker of the highlighted element

this was caused by too often fired mouseenter/mouseleave events

* heatmap: fix missing X axis option for log scales

* heatmap: fix missing zero bucket in tooltip histogram
This commit is contained in:
Alexander Zobnin
2017-07-25 17:28:29 +03:00
committed by Torkel Ödegaard
parent 8ca08d65e7
commit cb8ecb2d5f
5 changed files with 55 additions and 40 deletions

View File

@@ -18,6 +18,15 @@
stroke: $text-color-weak;
}
}
// This hack prevents mouseenter/mouseleave events get fired too often
svg {
pointer-events: none;
rect {
pointer-events: visiblePainted;
}
}
}
.heatmap-tooltip {