diff --git a/frontend/src/components/charts/EconomicsChart.tsx b/frontend/src/components/charts/EconomicsChart.tsx
index f33afea..d03151b 100644
--- a/frontend/src/components/charts/EconomicsChart.tsx
+++ b/frontend/src/components/charts/EconomicsChart.tsx
@@ -11,6 +11,7 @@ import {
XAxis,
YAxis,
} from 'recharts'
+import { useIsCoarsePointer } from '../../hooks/useMediaQuery'
import type { ChartDayPoint } from '../../types/economics'
type Props = {
@@ -93,6 +94,9 @@ function CustomTooltip({
}
export function EconomicsChart({ points, hasGreenBonus }: Props) {
+ // Touch zařízení: tooltip na tap (neblokuje scroll), ne hover.
+ const isCoarse = useIsCoarsePointer()
+
if (points.length === 0) {
return (
@@ -134,7 +138,10 @@ export function EconomicsChart({ points, hasGreenBonus }: Props) {
style: { fontSize: 11, fill: BLUE },
}}
/>
-
} />
+
}
+ />