In a BI dashboard prototype in Figma, you want to create a connection that triggers when a user clicks on a chart element. Which interaction setting correctly achieves this?
Think about what happens when a user clicks versus when they hover.
To create a connection that activates on a click, you must set the interaction trigger to 'On Click'. Hover triggers respond to mouse movement without clicking, and 'After Delay' or 'On Drag' are unrelated to clicks.
When creating a hover connection in Figma for a BI dashboard prototype, what is the expected user experience?
Hover means moving the mouse over something without clicking.
Hover triggers show the linked frame or overlay as soon as the mouse pointer is over the element, without any click or drag.
You have a BI report tracking user interactions. You want a DAX measure that counts how many times users clicked on a specific dashboard element, stored in a table 'UserClicks' with columns 'ElementID' and 'ClickTimestamp'. Which DAX measure correctly counts clicks for element 'E123'?
Clicks for E123 = COUNTROWS(FILTER(UserClicks, UserClicks[ElementID] = "E123"))
Use FILTER to select rows where ElementID equals 'E123' before counting.
Option A uses FILTER to select only rows with ElementID 'E123' and then counts them. Option A uses CALCULATE with a filter expression that overrides any existing filters on ElementID. Option A counts timestamps without filtering. Option A tries to sum a boolean expression, which is invalid.
You want to show users a tooltip with detailed data when they hover over a bar in a sales chart. Which visualization approach follows best practices?
Think about clarity and user focus when hovering.
Tooltips near the pointer with clear text and good contrast provide immediate, accessible feedback. Popups covering the chart or permanent labels clutter the view. Color changes without explanation can confuse users.
You created a hover interaction in Figma linking a chart to a detail frame, but the detail frame does not appear on hover. Which is the most likely cause?
Check if something might block mouse events on the element.
If an invisible layer covers the interactive element, hover events won't reach it, so the connection won't trigger. Other options describe different issues but do not explain why hover specifically fails.