From 4c0e2c317448ee57284c02566fda9dfb91b8a603 Mon Sep 17 00:00:00 2001 From: msober Date: Fri, 26 Feb 2021 16:57:04 +0800 Subject: [PATCH] Graph: Fix tooltip not showing when close to the edge of viewport (#31493) --- public/app/plugins/panel/graph/graph_tooltip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/graph/graph_tooltip.ts b/public/app/plugins/panel/graph/graph_tooltip.ts index 0e379af21ef..ca91d7ec3b6 100644 --- a/public/app/plugins/panel/graph/graph_tooltip.ts +++ b/public/app/plugins/panel/graph/graph_tooltip.ts @@ -55,7 +55,7 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope if (xMode === 'time') { innerHtml = '
' + absoluteTime + '
' + innerHtml; } - $tooltip.html(innerHtml).place_tt(pos.pageX + 20, pos.pageY); + $tooltip.html(innerHtml).place_tt(pos.pageX, pos.pageY, { offset: 10 }); }; this.getMultiSeriesPlotHoverInfo = function (seriesList: any[], pos: { x: number }) {