# @univerjs-pro/bases-dashboard

- Human documentation: [https://docs.univer.ai/reference/packages/plugins/univerjs-pro/bases-dashboard](https://docs.univer.ai/reference/packages/plugins/univerjs-pro/bases-dashboard)

- Agent Markdown: [https://docs.univer.ai/reference/packages/plugins/univerjs-pro/bases-dashboard.md](https://docs.univer.ai/reference/packages/plugins/univerjs-pro/bases-dashboard.md)

- Requested language: `en-US`

- Content language: `en-US`

- Documentation version: `1.0.0-rc.0`

- Source: [packages/plugins/univerjs-pro/bases-dashboard.mdx](https://github.com/dream-num/documentation/blob/dev/content/reference/packages/plugins/univerjs-pro/bases-dashboard.mdx)

---

Pivot View calculation, Dashboard persistence, commands, Worker RPC, and Facade APIs for Univer Base.

```typescript
import { UniverBaseDashboardPlugin } from '@univerjs-pro/bases-dashboard'

import '@univerjs-pro/bases-dashboard/facade'

univer.registerPlugin(UniverBaseDashboardPlugin)

const base = univerAPI.getActiveBase()
const table = base?.getTables()[0]
const pivot = table && base?.createPivotView('Revenue by region', table.getId())
const dashboard = base?.createDashboard('Executive overview')
```

The Facade entry extends `FBase` with Pivot View and Dashboard creation/query APIs. `FBasePivotView` manages Pivot configuration and calculation; `FBaseDashboard` manages its widgets and layout.

Use `UniverRemoteBaseDashboardPlugin` in a Worker. `notExecuteCalculation: true` registers the main-thread RPC side, `false` registers the Worker calculator, and omission keeps calculation in the current thread.

## Entry Points

* Facade: `@univerjs-pro/bases-dashboard/facade`
* Locale: `@univerjs-pro/bases-dashboard/locale/*`
