andreasgerstmayr/fava-dashboards

Custom Dashboards for Beancount in Fava

TypeScript

410

210 commits

updated Sep 15, 2026

See the code

README

Fava Dashboards

Continuous Integration PyPI

fava-dashboards allows creating custom dashboards in Fava.

Example dashboards with random data: Overview Assets Income and Expenses Sankey

More screenshots

Installation

pip install fava-dashboards

Enable this plugin in Fava by adding the following lines to your ledger:

2010-01-01 custom "fava-extension" "fava_dashboards"

Configuration

The plugin looks by default for a dashboards.tsx file (or .ts, .js[x], .[cm]js) in the directory of the Beancount ledger (e.g. if you run fava personal.beancount, the dashboards.tsx file should be in the same directory as personal.beancount). The location of the dashboards.tsx configuration file can be customized:

2010-01-01 custom "fava-extension" "fava_dashboards" "{
    'config': '/path/to/dashboards.tsx'
}"

Please take a look at the example dashboards configuration dashboards.tsx, which uses most of the functionality described below. To get TypeScript type support, download fava-dashboards.d.ts and place it next to dashboards.tsx.

To convert a legacy dashboards.yaml file from version 1 to the new dashboards.tsx format, you can run make deps && uv run scripts/convert_dashboards_yaml_to_tsx.py path/to/dashboards.yaml --output path/to/dashboards.tsx. This script covers most common cases, and does not perform TypeScript type inference.

The dashboard configuration defines one or more dashboards, each with one or more panels. A panel has a relative width (e.g. 50% for 2 columns, or 33.3% for 3 column layouts) and an absolute height.

Configuration Properties

  • dashboards: list of dashboards
  • theme: optional theme configuration

The theme configuration supports:

  • echarts: optional ECharts theme name, or a custom ECharts theme object
  • dashboard.panel.style: optional custom MUI style properties for dashboard panels

Dashboard Properties

  • name: dashboard name
  • variables: optional list of dashboard-level variables
  • panels: list of panels

Variable Properties

Variables can be defined on dashboards or panels. Dashboard variables are available to all panels in that dashboard, and panel variables are only available to that panel.

  • name: variable name
  • label: optional display label. Default: variable name
  • display: optional variable control type. Must be one of select or toggle. Default: select
  • style: optional custom MUI style properties for the variable control
  • multiple: optional flag to allow selecting multiple values. Default: false
  • options: a JavaScript function which returns the available values
  • default: optional default value. Use an array when multiple is true

Panel Properties

  • title: optional title of the panel
  • width: optional width of the panel. Default: 100%
  • height: optional height of the panel. Default: 400px
  • link: optional link target of the panel header
  • variables: optional list of panel-level variables
  • kind: panel kind. Must be one of html, echarts, d3_sankey, table or react
  • spec: a JavaScript function which generates a valid spec depending on the panel kind

The spec function is called with an object containing the following properties:

  • panel: the current panel definition
  • variables: the resolved dashboard and panel variables
  • ledger.dateFirst: start date of the current date filter, or first transaction date of the ledger
  • ledger.dateLast: end date of the current date filter, or last transaction date of the ledger
  • ledger.filterFirst: start date of the current date filter, or null if no date filter is set
  • ledger.filterLast: end date of the current date filter, or null if no date filter is set
  • ledger.operatingCurrencies: configured operating currencies of the ledger
  • ledger.ccy: shortcut for the first configured operating currency of the ledger
  • ledger.accounts: declared accounts of the ledger
  • ledger.commodities: declared commodities of the ledger
  • ledger.query(bql): executes the specified BQL query
  • ledger.urlFor(url): adds current Fava filter parameters to url

HTML panel

The spec code of HTML panels must return valid HTML. The HTML code will be rendered in the panel.

ECharts panel

The spec code of Apache ECharts panels must return valid Apache ECharts chart options. Please take a look at the ECharts examples to get familiar with the available chart types and options.

d3-sankey panel

The spec code of d3-sankey panels must return valid d3-sankey chart options. Please take a look at the example dashboard configuration dashboards.tsx.

Table panel

The spec code of table panels must return valid MUI X Data Grid props.

React panel

The spec code of React panels must return a valid JSX element. Please note that the code must not return a Promise (i.e. async/await is not supported).

View Example Ledger

cd example; fava example.beancount

Contributing

This plugin consists of a Python backend and a TypeScript frontend.

Install uv and Node.js 22, run make deps to install the dependencies, and make dev to run the Fava dev server with auto-rebuild.

Before submitting a PR, please run make build to build the frontend in production mode, and add the compiled frontend to the PR.

Articles

Acknowledgements

Thanks to Martin Blais and all contributors of Beancount, Jakob Schnitzer, Dominik Aumayr and all contributors of Fava, and to all contributors of Apache ECharts, D3.js and d3-sankey.

beancount
charts
dashboards
fava
sankey

Contributors

andreasgerstmayr

180 commits

dependabot[bot]

18 commits

Evernight

4 commits

fengkx

1 commits

andreasgerstmayr/fava-dashboards

Custom Dashboards for Beancount in Fava

TypeScript

410

210 commits

updated Sep 15, 2026

See the code

README

Fava Dashboards

Continuous Integration PyPI

fava-dashboards allows creating custom dashboards in Fava.

Example dashboards with random data: Overview Assets Income and Expenses Sankey

More screenshots

Installation

pip install fava-dashboards

Enable this plugin in Fava by adding the following lines to your ledger:

2010-01-01 custom "fava-extension" "fava_dashboards"

Configuration

The plugin looks by default for a dashboards.tsx file (or .ts, .js[x], .[cm]js) in the directory of the Beancount ledger (e.g. if you run fava personal.beancount, the dashboards.tsx file should be in the same directory as personal.beancount). The location of the dashboards.tsx configuration file can be customized:

2010-01-01 custom "fava-extension" "fava_dashboards" "{
    'config': '/path/to/dashboards.tsx'
}"

Please take a look at the example dashboards configuration dashboards.tsx, which uses most of the functionality described below. To get TypeScript type support, download fava-dashboards.d.ts and place it next to dashboards.tsx.

To convert a legacy dashboards.yaml file from version 1 to the new dashboards.tsx format, you can run make deps && uv run scripts/convert_dashboards_yaml_to_tsx.py path/to/dashboards.yaml --output path/to/dashboards.tsx. This script covers most common cases, and does not perform TypeScript type inference.

The dashboard configuration defines one or more dashboards, each with one or more panels. A panel has a relative width (e.g. 50% for 2 columns, or 33.3% for 3 column layouts) and an absolute height.

Configuration Properties

  • dashboards: list of dashboards
  • theme: optional theme configuration

The theme configuration supports:

  • echarts: optional ECharts theme name, or a custom ECharts theme object
  • dashboard.panel.style: optional custom MUI style properties for dashboard panels

Dashboard Properties

  • name: dashboard name
  • variables: optional list of dashboard-level variables
  • panels: list of panels

Variable Properties

Variables can be defined on dashboards or panels. Dashboard variables are available to all panels in that dashboard, and panel variables are only available to that panel.

  • name: variable name
  • label: optional display label. Default: variable name
  • display: optional variable control type. Must be one of select or toggle. Default: select
  • style: optional custom MUI style properties for the variable control
  • multiple: optional flag to allow selecting multiple values. Default: false
  • options: a JavaScript function which returns the available values
  • default: optional default value. Use an array when multiple is true

Panel Properties

  • title: optional title of the panel
  • width: optional width of the panel. Default: 100%
  • height: optional height of the panel. Default: 400px
  • link: optional link target of the panel header
  • variables: optional list of panel-level variables
  • kind: panel kind. Must be one of html, echarts, d3_sankey, table or react
  • spec: a JavaScript function which generates a valid spec depending on the panel kind

The spec function is called with an object containing the following properties:

  • panel: the current panel definition
  • variables: the resolved dashboard and panel variables
  • ledger.dateFirst: start date of the current date filter, or first transaction date of the ledger
  • ledger.dateLast: end date of the current date filter, or last transaction date of the ledger
  • ledger.filterFirst: start date of the current date filter, or null if no date filter is set
  • ledger.filterLast: end date of the current date filter, or null if no date filter is set
  • ledger.operatingCurrencies: configured operating currencies of the ledger
  • ledger.ccy: shortcut for the first configured operating currency of the ledger
  • ledger.accounts: declared accounts of the ledger
  • ledger.commodities: declared commodities of the ledger
  • ledger.query(bql): executes the specified BQL query
  • ledger.urlFor(url): adds current Fava filter parameters to url

HTML panel

The spec code of HTML panels must return valid HTML. The HTML code will be rendered in the panel.

ECharts panel

The spec code of Apache ECharts panels must return valid Apache ECharts chart options. Please take a look at the ECharts examples to get familiar with the available chart types and options.

d3-sankey panel

The spec code of d3-sankey panels must return valid d3-sankey chart options. Please take a look at the example dashboard configuration dashboards.tsx.

Table panel

The spec code of table panels must return valid MUI X Data Grid props.

React panel

The spec code of React panels must return a valid JSX element. Please note that the code must not return a Promise (i.e. async/await is not supported).

View Example Ledger

cd example; fava example.beancount

Contributing

This plugin consists of a Python backend and a TypeScript frontend.

Install uv and Node.js 22, run make deps to install the dependencies, and make dev to run the Fava dev server with auto-rebuild.

Before submitting a PR, please run make build to build the frontend in production mode, and add the compiled frontend to the PR.

Articles

Acknowledgements

Thanks to Martin Blais and all contributors of Beancount, Jakob Schnitzer, Dominik Aumayr and all contributors of Fava, and to all contributors of Apache ECharts, D3.js and d3-sankey.

beancount
charts
dashboards
fava
sankey

Contributors

andreasgerstmayr

180 commits

dependabot[bot]

18 commits

Evernight

4 commits

fengkx

1 commits

Languages

TypeScript

91.5%

Python

7.2%