When using the Pen tool in Figma to create a custom path, what does an anchor point represent?
Think about what defines the shape's outline.
An anchor point is a fixed point on the canvas that marks where a path segment begins or ends. It controls the shape's structure.
You created a custom path with the Pen tool in Figma and exported the coordinates. Which DAX measure correctly calculates the total length of the path assuming you have a table 'PathPoints' with columns 'X' and 'Y' ordered by 'PointOrder'?
PathPoints = DATATABLE( "PointOrder", INTEGER, "X", FLOAT, "Y", FLOAT, { {1, 0, 0}, {2, 3, 4}, {3, 6, 0} } )
Think about how to calculate distance between consecutive points.
Option B calculates the distance between each point and the previous point, then sums these distances to get the total path length.
You have data points from a custom path created with the Pen tool. Which visualization best shows the shape and flow of the path in a BI dashboard?
Think about how to show a continuous shape.
A line chart connecting points in order shows the path shape clearly by linking points sequentially.
You created a line chart to show a custom path but the shape looks broken with disconnected segments. What is the most likely cause?
Think about how the line connects points.
If points are not sorted by their order, the line chart connects points in wrong sequence, breaking the shape.
You need to model multiple custom paths created with the Pen tool, each with several segments and anchor points. Which data model design best supports efficient querying and visualization?
Think about how to organize hierarchical data for paths and segments.
A single table with PathID, SegmentID, and PointOrder allows clear hierarchy and easy filtering for visualization and analysis.