Complete the code to add a new dashboard in Tableau.
dashboard = workbook.[1]()In Tableau's Python API, add_dashboard() is used to add a new dashboard to the workbook.
Complete the code to set the size of the dashboard to 1200x800 pixels.
dashboard.[1] = (1200, 800)
The size property sets the width and height of the dashboard in Tableau.
Fix the error in the code to add a worksheet to the dashboard.
dashboard.[1](worksheet)The correct method to add a worksheet to a dashboard in Tableau is add_sheet().
Fill both blanks to set the dashboard title and make it visible.
dashboard.[1] = 'Sales Overview' dashboard.[2] = True
The title property sets the dashboard's title text, and show_title controls its visibility.
Fill all three blanks to add a filter action to the dashboard.
filter_action = dashboard.[1](source_sheet=[2], target_sheet=[3])
The method add_filter_action adds a filter action. You specify the source and target worksheets to connect.
