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

# Parameter Usecases

### Dashboard Selection Parameters

* **`dashboard-id`**: Use when you want to embed a specific dashboard instead of the default one
* **`show-dashboard-select`**: Enable this to allow users to switch between different dashboards within the embedded view

### Navigation Control

* **`show-nav`**: Set to `true` to show the main navigation sidebar (useful for full-featured embeds)

### Chat Integration

* **`chat-composer`**: Show the AI chat interface for data queries
* **`show-toolbar`**: Control the visibility of the chat toolbar
* **`show-chat-toolbar`**: Control the visibility of the chat toolbar specifically

### Editing and Generation Features

* **`generate-dashboard`**: Enable dashboard generation features for creating new dashboards
* **`edit-mode`**: Enable edit mode to allow users to modify dashboard content
* **`edit-layout`**: Enable layout editing to rearrange dashboard components
* **`edit-chart`**: Enable chart editing to modify individual charts
* **`delete-chart`**: Enable chart deletion functionality
* **`pin-chart`**: Enable chart pinning to keep important charts visible

### Parameter Examples

Here are some common parameter combinations:

<Info>
  Replace `YOUR_TOKEN` with the embedded token generated from your backend. See
  the [Get API Key](/documentation/embedding/get-api-key) guide for details.
</Info>

```html theme={null}
<!-- Basic dashboard with minimal features -->
<iframe
  src="https://papermap.ai/embedded/dashboard?embedded-token=YOUR_TOKEN"
></iframe>

<!-- Full-featured dashboard with editing capabilities -->
<iframe
  src="https://papermap.ai/embedded/dashboard?embedded-token=YOUR_TOKEN&dashboard-id=YOUR_DASHBOARD_ID&show-nav=true&edit-mode=true&generate-dashboard=true"
></iframe>

<!-- Read-only dashboard for public display -->
<iframe
  src="https://papermap.ai/embedded/dashboard?embedded-token=YOUR_TOKEN&show-header=false&show-toolbar=false&edit-mode=false"
></iframe>
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Troubleshooting" icon="wrench" href="/documentation/embedding/troubleshooting">
    Common issues and solutions for embedding Papermap dashboards in your application
  </Card>
</CardGroup>
