Complete the code to create an area chart by dragging the correct mark type.
SET mark_type = '[1]'
The Area mark type fills the area under the line, creating an area chart.
Complete the code to set the X-axis to the 'Date' field for the area chart.
SET x_axis = '[1]'
The X-axis in an area chart often represents time, so we use the Date field.
Fix the error in the calculation to sum sales for the area chart.
SUM([1])To show total sales in the area chart, we sum the Sales field.
Fill both blanks to create a stacked area chart by setting the mark type and color field.
SET mark_type = '[1]' SET color = '[2]'
Use Area for the mark type and color by Category to stack areas by category.
Fill all three blanks to create a dual-axis area chart by setting the first measure, second measure, and mark type.
SET first_measure = '[1]' SET second_measure = '[2]' SET mark_type = '[3]'
Use Sales and Profit as measures and Area as the mark type for a dual-axis area chart.