Complete the code to create a horizontal layout container in Tableau.
container = dashboard.[1]Container()In Tableau, a HorizontalContainer arranges items side by side from left to right.
Complete the code to add a vertical container to the dashboard.
dashboard.add([1]Container())A VerticalContainer stacks dashboard elements from top to bottom.
Fix the error in the code to correctly create a vertical container.
container = dashboard.[1]Container()Class names in Tableau's API are case sensitive and use PascalCase. VerticalContainer is correct.
Fill both blanks to create a horizontal container and add a vertical container inside it.
h_container = dashboard.[1]Container() v_container = h_container.add_[2]Container()
The first blank must be Horizontal to create a horizontal container. The second blank must be Vertical to create a vertical container inside it.
Fill all three blanks to add a vertical container inside a horizontal container and then add a floating container inside the vertical container.
h_container = dashboard.[1]Container() v_container = h_container.add_[2]Container() f_container = v_container.add_[3]Container()
The first blank is Horizontal to create the outer container. The second blank is Vertical to add a vertical container inside it. The third blank is Floating to add a floating container inside the vertical container.