A finger has no hover state, so anything that depends on hovering fails outright on touch
Aliases: touch interaction · mobile charts
What it is
Hovering is a desktop-only probing act: a finger has no hover state — touch is selection. Every interaction that stakes key information on hover (tooltips, highlighting, focus-following) fails natively on touch and needs an explicit alternative — tap to view, a persistent summary, or a detail drill. Touch adaptation is not "shrink the layout"; it is re-assigning the interaction channels.
Why it happens
The first principle of alternative design is compensating for the cost of merging probing with selection: on desktop, hover is a free preview and click an expensive commitment; touch offers one chance — a mis-tap is a selection, so the view action must be either reversible (tap empty space to dismiss) or cheap (tap highlights without navigating). The second principle is finger precision: a touch point is far larger than a cursor, so dense charts need enlarged hit areas or nearest-element snapping. The third principle is promoting persistent information: every on-demand retrieval on touch costs a tap, so high-frequency information's display weight should rise — a mobile chart carrying a few permanent key labels is legitimate where the desktop version would not bother.
Where it stops holding
Alternatives carry their own bills: tap-to-view occupies gestures (colliding with pan and zoom, needing mode separation or gesture allocation), and persistent labels consume canvas (dense charts have no room). Tablet and phone differ too — a tablet's size approaches desktop and can degrade conservatively, while a phone needs aggressive restructuring (portrait, single-metric cards). The audit standard for touch fitness is not "it opens" but "the core task completes on touch within acceptable steps."
Applying it
- On touch, replace hover tooltips with "tap to highlight plus overlay; tap empty space to dismiss," and enlarge tap hit areas.
- Pin high-frequency key values (totals, current selection) permanently on screen, never behind a reveal.
- Verification: complete the core tasks (look up a value, compare, drill) on a real touchscreen, recording steps and mis-taps; doubled steps or frequent mis-taps mean the adaptation fails.
Related
- Same group: U6.09.1 Tooltips carry exact values · U6.09.3 Tooltip content must include identity information
- Nearby: U6.07.3 Distortion shifts as the focus moves; targets drift and become hard to hit · U11.04.5 Interactive marks also answer to touch-target size floors
- Search terms:
touch tooltip alternative·mobile visualization·tap target chart