diff --git a/public/app/features/explore/Graph/ExploreGraph.tsx b/public/app/features/explore/Graph/ExploreGraph.tsx index 97ac62ec6a5..2d3c8a47489 100644 --- a/public/app/features/explore/Graph/ExploreGraph.tsx +++ b/public/app/features/explore/Graph/ExploreGraph.tsx @@ -168,7 +168,8 @@ export function ExploreGraph({ const panelContext: PanelContext = { eventsScope: 'explore', eventBus, - sync: () => DashboardCursorSync.Crosshair, + // TODO: Re-enable DashboardCursorSync.Crosshair when #81505 is fixed + sync: () => DashboardCursorSync.Off, onToggleSeriesVisibility(label: string, mode: SeriesVisibilityChangeMode) { setFieldConfig(seriesVisibilityConfigFactory(label, mode, fieldConfig, data)); },