Embedding Examples

Disable pivots

It is possible to disable the pivot table on an Explore dashboard. This is configured using the embeds.hide_pivot field in the explore dashboard YAML, not as part of the iframe request.

Dashboard YAML

embeds:
  hide_pivot: true

Source: embedding/rill-project/dashboards/auctions_explore_hide_pivot.yaml

Iframe request

POST https://api.rilldata.com/v1/orgs/demo/projects/rill-embedding/iframe

Authorization: Bearer <RILL_SERVICE_TOKEN>
Content-Type: application/json

{
  "type": "explore",
  "resource": "auctions_explore_hide_pivot"
}

Source: embedding/web/src/app/customization/disable-pivots/page.tsx

Loading...