Skip to main content

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
  • 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:
Replace YOUR_TOKEN with the embedded token generated from your backend. See the Get API Key guide for details.
<!-- 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