diff --git a/public/app/plugins/panel/flamegraph/components/FlameGraph/FlameGraph.tsx b/public/app/plugins/panel/flamegraph/components/FlameGraph/FlameGraph.tsx index fdef434d9c4..d8f68c0aa6d 100644 --- a/public/app/plugins/panel/flamegraph/components/FlameGraph/FlameGraph.tsx +++ b/public/app/plugins/panel/flamegraph/components/FlameGraph/FlameGraph.tsx @@ -139,7 +139,7 @@ const FlameGraph = ({ if (barIndex !== -1 && !isNaN(levelIndex) && !isNaN(barIndex)) { tooltipRef.current.style.left = e.clientX + 10 + 'px'; - tooltipRef.current.style.top = e.clientY + 40 + 'px'; + tooltipRef.current.style.top = e.clientY + 'px'; const bar = levels[levelIndex][barIndex]; const tooltipData = getTooltipData(valueField!, bar.label, bar.value, totalTicks);