Graph: Fixes event emit function error (#28795)

This commit is contained in:
Torkel Ödegaard 2020-11-03 21:43:32 +01:00 committed by GitHub
parent 1f36e377e2
commit df3a67428f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope
plot.unhighlight();
}
}
dashboard.events.$emit(new LegacyGraphHoverClearEvent());
dashboard.events.publish(new LegacyGraphHoverClearEvent());
});
elem.bind('plothover', (event: any, pos: { panelRelY: number; pageY: number }, item: any) => {
@ -165,7 +165,7 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope
// broadcast to other graph panels that we are hovering!
pos.panelRelY = (pos.pageY - elem.offset().top) / elem.height();
dashboard.events.$emit(new LegacyGraphHoverEvent({ pos: pos, panel: panel }));
dashboard.events.publish(new LegacyGraphHoverEvent({ pos: pos, panel: panel }));
});
elem.bind('plotclick', (event: any, pos: any, item: any) => {