In a dashboard design, why is it important to set the line height relative to the font size?
Think about how text looks when lines are too close or too far apart.
Setting line height relative to font size ensures that lines of text have enough vertical space, improving readability and preventing overlap.
You want to create a dashboard title that is clear and easy to read on all screen sizes. Which combination of font size and line height is best?
Line height should be slightly larger than font size for clarity.
A line height slightly larger than the font size (like 28px for 24px font) provides enough spacing for clear reading without crowding.
You want to create a measure that sets line height dynamically based on font size in Power BI. Which DAX expression correctly calculates line height as 1.2 times the font size?
FontSize = 14 LineHeight = FontSize * 1.2
Think about simple multiplication of a measure.
The correct way to calculate line height as 1.2 times font size is to multiply the font size measure by 1.2 directly.
A text style in Figma has font size 16px but line height set to 12px, causing text lines to overlap. Which option correctly fixes this issue?
Line height should be equal or greater than font size for readability.
Increasing line height to a value greater than font size prevents overlapping and improves readability.
You need to design a BI dashboard text style that adjusts font size and line height for different screen sizes automatically. Which approach best achieves this?
Think about how relative units help with scaling on different devices.
Using relative units like rem for font size and unitless line height multiplier allows text to scale proportionally across screen sizes, ensuring readability and consistency.