Roberto Allende36 downloadsInteractive charts inside any note. The data lives as a plain Markdown table inside each block — readable and AI-friendly even without the plugin.
Charts that live where your notes do.

I really missed a modern chart plugin in Obsidian that would allow me to have self-contained blocks so I can use Obsidian to visualize data — and at the same time fit well with my AI flow. Fancy Charts not only produces clean visualizations, it also provides a clean format for data. Inside each block, the data lives as a plain Markdown table: easy to read and edit even without the plugin installed.
From within Obsidian:
The chart builder modal opens. Choose a chart type, fill in the data table, set an optional title and axis, then click Insert. A fancy-charts block is written into your note and rendered immediately.
Click the edit button that appears on a rendered chart to reopen the modal pre-filled with the existing data. Make your changes, then click Update.

| Type | Description |
|---|---|
bar |
Vertical bar chart; one bar series per Y-axis column |
line |
Line chart; one line per Y-axis column |
pie |
Pie chart; one column for slice labels, one for values |
scatter |
Scatter plot; X column provides X values, first Y column provides Y values |
area |
Stacked area chart; one filled series per Y-axis column |
funnel |
Funnel chart; stage names and values |
heatmap |
Heatmap; X category, Y category, numeric value — colour scale auto-computed |
sankey |
Sankey flow diagram; source node, target node, flow value — nodes derived automatically |
Charts are stored as a fenced fancy-charts code block in two modes:
Simple mode — a YAML config followed by a Markdown table:
```fancy-charts
---
type: bar
title: Quarterly Revenue
xAxis: quarter
yAxis:
- revenue
- costs
---
| quarter | revenue | costs |
| --- | --- | --- |
| Q1 | 120 | 80 |
| Q2 | 200 | 110 |
| Q3 | 150 | 90 |
| Q4 | 180 | 100 |
```
Advanced mode — a raw ECharts option object for full control:
```fancy-charts
echarts:
xAxis:
type: category
data: [Q1, Q2, Q3, Q4]
yAxis:
type: value
series:
- type: bar
data: [120, 200, 150, 180]
name: Revenue
```
The full schema is documented in docs/schema.md.
Because the data is a standard Markdown table, a chart block is still readable — as a table, without the interactive chart — in any Markdown viewer, even without the plugin.

If there's a gap you'd like prioritized, open an issue — this roadmap takes real usage and feedback into account.
MIT — Copyright (c) 2026 Astuten.io Ltd