TooltipPlugin: Remove other panels' shared tooltip in edit panel (#42187)

This commit is contained in:
Victor Marin
2021-11-29 19:27:56 +02:00
committed by GitHub
parent 9c9e79da4f
commit 42d1a0f32e

View File

@@ -166,11 +166,13 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope
self.show(pos, item);
// broadcast to other graph panels that we are hovering!
pos.panelRelY = (pos.pageY - elem.offset().top) / elem.height();
hoverEvent.payload.pos = pos;
hoverEvent.payload.panel = panel;
hoverEvent.payload.point['time'] = (pos as any).x;
dashboard.events.publish(hoverEvent);
if (!dashboard.panelInEdit) {
pos.panelRelY = (pos.pageY - elem.offset().top) / elem.height();
hoverEvent.payload.pos = pos;
hoverEvent.payload.panel = panel;
hoverEvent.payload.point['time'] = (pos as any).x;
dashboard.events.publish(hoverEvent);
}
});
elem.bind('plotclick', (event: any, pos: any, item: any) => {