> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# uiSettings

> Controls general settings of the application in embed.

In the **Embed URL Builder**, this is the **UI Settings** field.

## Syntax

```markdown theme={null}
uiSettings=<encoded_settings_object>
```

## Properties

<ParamField path="uiSettings" type="object">
  An object containing UI configuration settings.

  <Expandable title="uiSettings properties" defaultOpen="true">
    <ParamField body="dashboardChartContextMenu" type="boolean" default="true">
      When `true`, context menus (the <Icon icon="ellipsis-vertical" /> icon and right-click menu) will be available on dashboard tiles. When `false`, context menus will be hidden.

      This setting is not applicable to classic dashboards.
    </ParamField>

    <ParamField body="documentBreadcrumb" type="string" default="link">
      Controls the display of folder path breadcrumbs in document title headers. This setting applies to [Create mode embeds](/embed/customization/create-mode) and affects workbooks and dashboards.

      Supported values:

      * `link` - Displays the folder path breadcrumb in the document title header as clickable links
      * `display` - Displays the folder path breadcrumb as visible text without hyperlinks, preventing navigation out of the embed
      * `none` - Hides the folder path breadcrumb entirely, including the personal-scope prefix (e.g., "X's Documents")
    </ParamField>

    <ParamField body="showNavigation" type="boolean">
      When `true`, the left navigation panel and icon will display in the top-left corner of the app. When `false`, the panel and icon are hidden.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

The following example demonstrates what the URL encoded version of `uiSettings={"showNavigation": false}` would be:

```markdown title="Example uiSettings with showNavigation" theme={null}
uiSettings=%7B%22showNavigation%22%3A%20false%7D
```

The following example demonstrates hiding the dashboard tile context menu:

<CodeGroup>
  ```markdown Plain text theme={null}
  uiSettings={"dashboardChartContextMenu": false}
  ```

  ```markdown URL-encoded theme={null}
  uiSettings=%7B%22dashboardChartContextMenu%22%3A%20false%7D
  ```
</CodeGroup>
