Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface VizSettings

The options for configuring a viz in view mode.

Hierarchy

Index

Properties

Optional debug

debug: undefined | false | true

Indicates whether the non-minified version of JavaScript is loaded. If specified (or set to true), the non-minified version is used for both the local component and the Tableau Server visualization (if enabled). If not specified (or set to false), the minified version of the JavaScript files are loaded.

<tableau-viz id="tableauViz" debug />
<tableau-authoring-viz id="tableauViz" debug />
<tableau-ask-data id="tableauAskData" debug />

Optional device

device: DeviceType

Specifies a device layout for a dashboard, if it exists. Values can be default, desktop, tablet, or phone. If not specified, defaults to loading a layout based on the smallest dimension of the hosting iframe element.

<tableau-viz id="tableauViz"  device="desktop" />

Optional disableUrlActionsPopups

disableUrlActionsPopups: undefined | false | true

Indicates whether to suppress the execution of URL actions. This option does not prevent the URL action event from being raised. You can use this option to change what happens when a URL action occurs. If set to true and you create an event listener for the URL_ACTION event, you can use an event listener handler to customize the actions.

<tableau-viz id="tableauViz" disable-url-actions />

Optional hideEditButton

hideEditButton: undefined | false | true

Indicates whether the Edit button is hidden or visible. If not set, defaults to false, meaning that the Edit button is visible.

<tableau-viz id="tableauViz" hide-edit-button>

Optional hideEditInDesktopButton

hideEditInDesktopButton: undefined | false | true

Indicates whether the Edit in Desktop button is hidden or visible. If not specified, defaults to false, meaning that the Edit in Desktop button is visible.

<tableau-viz id="tableauViz" hide-edit-in-desktop-button>
<tableau-authoring-viz id="tableauViz" hide-edit-in-desktop-button>

Optional hideTabs

hideTabs: undefined | false | true

Indicates whether tabs are hidden or shown.

<tableau-viz id="tableauViz"  hide-tabs />

Optional iframeAuth

iframeAuth: undefined | false | true

Indicates whether to use the old auth mechanism for authentication which happens inside the iframe. If specified, VizLoadErrorEvents triggered due to auth failures will not be thrown.

<tableau-viz id="tableauViz" iframe-auth />
<tableau-authoring-viz id="tableauViz" iframe-auth />
<tableau-ask-data id="tableauAskData" iframe-auth />

Optional instanceIdToClone

instanceIdToClone: undefined | string

Specifies the ID of an existing instance to make a copy (clone) of. This is useful if the user wants to continue analysis of an existing visualization without losing the state of the original. If the ID does not refer to an existing visualization, the cloned version is derived from the original visualization.

<tableau-viz id="tableauViz"  instance-id-to-clone="id1" />

Optional onCustomMarkContextMenuEvent

onCustomMarkContextMenuEvent: undefined | string

An event raised when a custom mark context menu is clicked.

<tableau-viz id="tableauViz" onCustomMarkContextMenuEvent="onCustomMarkContextMenuEventHandler" />

Optional onCustomViewLoaded

onCustomViewLoaded: undefined | string

An event raised when a custom view has finished loading. This event is raised after the callback function for FirstInteractive (if any) has been called.

<tableau-viz id="tableauViz" onCustomViewLoaded="onCustomViewLoadedHandler" />

Optional onCustomViewRemoved

onCustomViewRemoved: undefined | string

An event raised when a custom view has been removed.

<tableau-viz id="tableauViz" onCustomViewRemoved="onCustomViewRemovedHandler" />

Optional onCustomViewSaved

onCustomViewSaved: undefined | string

An event raised when a custom view has been saved (newly created or updated).

<tableau-viz id="tableauViz" onCustomViewSaved="onCustomViewSavedHandler" />

Optional onCustomViewSetDefault

onCustomViewSetDefault: undefined | string

An event raised when a custom view has been set as the default view for a workbook.

<tableau-viz id="tableauViz" onCustomViewSetDefault="onCustomViewSetDefaultHandler" />

Optional onEditButtonClicked

onEditButtonClicked: undefined | string

An event raised when the user clicks on the Edit Button.

<tableau-viz id="tableauViz" onEditButtonClicked="onEditButtonClickedHandler" />

Optional onEditInDesktopButtonClicked

onEditInDesktopButtonClicked: undefined | string

An event raised when the user clicks on the Edit In Desktop Button. You can use this event type with TableauViz objects.

<tableau-viz id="tableauViz" onEditInDesktopButtonClicked="onEditInDesktopButtonClickedHandler" />
<tableau-authoring-viz id="tableauViz" onEditInDesktopButtonClicked="onEditInDesktopButtonClickedHandler" />

Optional onFilterChanged

onFilterChanged: undefined | string

An event raised when any filter has changed state. You can use this event type with TableauViz objects.

<tableau-viz id="tableauViz" onFilterChanged="onFilterChangedHandler" />

Optional onFirstInteractive

onFirstInteractive: undefined | string

An event raised when the Viz object first becomes interactive. This is only raised once.

<tableau-viz id="tableauViz" "onFirstInteractive"="onFirstInteractiveHandler" />
<tableau-authoring-viz id="tableauViz" onFirstInteractive="onFirstInteractiveHandler" />

Optional onFirstVizSizeKnown

onFirstVizSizeKnown: undefined | string

An event raised when the size of the viz is known. You can use this event to perform tasks such as resizing the elements surrounding the Viz object once the object's size has been established.

<tableau-viz id="tableauViz" "onFirstVizSizeKnown"="onFirstVizSizeKnownHandler" />
<tableau-authoring-viz id="tableauViz" onFirstVizSizeKnown="onFirstVizSizeKnownHandler" />

Optional onMarkSelectionChanged

onMarkSelectionChanged: undefined | string

An event raised when the selected marks on a visualization have changed. You can use this event type with TableauViz objects.

<tableau-viz id="tableauViz" onMarkSelectionChanged="onMarkSelectionChangedHandler" />

Optional onParameterChanged

onParameterChanged: undefined | string

An event raised when a parameter has had its value modified. You can use this event type with Parameter objects.

<tableau-viz id="tableauViz" onParameterChanged="onParameterChangedHandler" />

Optional onStoryPointSwitched

onStoryPointSwitched: undefined | string

An event raised after a new story point becomes active.

<tableau-viz id="tableauViz" onStoryPointSwitched="onStoryPointSwitchedHandler" />

Optional onTabSwitched

onTabSwitched: undefined | string

An event raised after a tab switch occurs (the active sheet has changed). Guarantees the viz object will be interactive after this.

<tableau-viz id="tableauViz" onTabSwitched="onTabSwitchedHandler" />

Optional onToolbarStateChanged

onToolbarStateChanged: undefined | string

An event raised when a toolbar button or control becomes available or becomes unavailable.

<tableau-viz id="tableauViz" onToolbarStateChanged="onToolbarStateChangedHandler" />

Optional onUrlAction

onUrlAction: undefined | string

An event raised when a URL action occurs. See the UrlActionEvent class.

<tableau-viz id="tableauViz" onUrlAction="onUrlActionHandler" />

Optional suppressDefaultEditBehavior

suppressDefaultEditBehavior: undefined | false | true

Indicates whether the default edit behavior is suppressed. If not specified, defaults to false, meaning that the default edit behavior is not suppressed.

<tableau-viz id="tableauViz" suppress-default-edit-behavior>
<tableau-authoring-viz id="tableauViz" suppress-default-edit-behavior>

Optional token

token: undefined | string

The token used for authorization

<tableau-viz id="tableauViz" token="some-token-containing-clientId" />
<tableau-authoring-viz id="tableauViz" token="some-token-containing-clientId" />
<tableau-ask-data id="tableauAskData" token="some-token-containing-clientId" />

Optional toolbar

toolbar: Toolbar

Specifies the position of the toolbar, if it is shown. The values can be Toolbar.Top, Toolbar.Bottom or Toolbar.Hidden. If not specified, defaults to Toolbar.Bottom.

<tableau-viz id="tableauViz"  toolbar="hidden" />

Optional touchOptimize

touchOptimize: undefined | false | true

Indicates whether to touch optimize viz controls.

<tableau-viz id="tableauViz" touch-optimize />
<tableau-authoring-viz id="tableauViz" touch-optimize />