Complete the code to set the mark type to a bar chart in Tableau.
worksheet.mark_type = '[1]'
In Tableau, setting the mark type to 'bar' creates a bar chart visualization.
Complete the code to set the mark type to a line chart in Tableau.
worksheet.mark_type = '[1]'
Setting the mark type to 'line' in Tableau creates a line chart, useful for showing trends over time.
Fix the error in the code to set the mark type to circle in Tableau.
worksheet.mark_type = '[1]'
The correct mark type for circle marks in Tableau is 'circle'. This creates scatter plot points.
Fill both blanks to set the mark type to automatic and then to bar in Tableau.
worksheet.mark_type = '[1]' worksheet.mark_type = '[2]'
First setting mark type to 'automatic' lets Tableau choose the best mark type. Then setting it to 'bar' explicitly changes it to a bar chart.
Fill all three blanks to set the mark type to circle, then line, then bar in Tableau.
worksheet.mark_type = '[1]' worksheet.mark_type = '[2]' worksheet.mark_type = '[3]'
This sequence sets the mark type first to circle (scatter points), then line (trend lines), and finally bar (bar chart) in Tableau.