Graph: Fix tooltip not showing when close to the edge of viewport (#31493)

This commit is contained in:
msober
2021-02-26 16:57:04 +08:00
committed by GitHub
parent c41b559063
commit 4c0e2c3174

View File

@@ -55,7 +55,7 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope
if (xMode === 'time') {
innerHtml = '<div class="graph-tooltip-time">' + absoluteTime + '</div>' + 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 }) {