Gurio25 downloadsInteractive 9×9 Mandala Chart for structured goal planning — inspired by Shohei Ohtani's method. Supports markdown, 5 languages, and print export.
An interactive Mandala Chart plugin for Obsidian — the 9×9 goal-planning framework popularized by baseball star Shohei Ohtani.
Languages / 言語: 🇯🇵 日本語 · 🇺🇸 English · 🇨🇳 中文 · 🇰🇷 한국어 · 🇪🇸 Español
(Auto-detected from your Obsidian language setting)
A Mandala Chart is a 9×9 grid used for structured goal planning. You place your main goal in the center, surround it with 8 key themes, and then expand each theme into 8 supporting ideas — giving you 64 action items at a glance.
┌───────────────────────────────┐
│ T0 │ T1 │ T2 │ │
│──────┼──────┼──────┤ │
│ T3 │ GOAL │ T4 │ ... │
│──────┼──────┼──────┤ │
│ T5 │ T6 │ T7 │ │
└───────────────────────────────┘
Each T = a 3×3 sub-grid with 8 ideas
#tags, [[links]], **bold** in any cell.obsidian/plugins/mandala-chart/ folderhttps://github.com/gurio318/obsidian-mandala-chart
Click the ⊞ grid icon in the left sidebar to open a dedicated Mandala Chart tab. Your data is saved automatically between sessions.
Use the command palette (Ctrl/Cmd + P) → "Insert Mandala Chart into note", or type the code block manually:
```mandala
{
"center": "My Main Goal",
"themes": [
{ "theme": "Theme 1", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 2", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 3", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 4", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 5", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 6", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 7", "items": ["", "", "", "", "", "", "", ""] },
{ "theme": "Theme 8", "items": ["", "", "", "", "", "", "", ""] }
]
}
```
Click 🖨 Print (top right) to open a print-optimized A4 landscape page with all 81 cells.
The 8 themes follow a clockwise rainbow gradient around the center:
| Position | Color |
|---|---|
| NW ↖ | 🔴 Red |
| N ↑ | 🟠 Orange |
| NE ↗ | 🟡 Yellow-Green |
| E → | 🟢 Green |
| SE ↘ | 🩵 Teal |
| S ↓ | 🔵 Blue |
| SW ↙ | 🟣 Purple |
| W ← | 🩷 Pink |
The center main goal is highlighted in yellow ⭐
Charts are stored as JSON in the mandala code block. You can edit the JSON directly or use the interactive UI.
{
"center": "My Goal",
"themes": [
{
"theme": "Theme Name",
"items": ["idea1", "idea2", "idea3", "idea4", "idea5", "idea6", "idea7", "idea8"]
}
]
}
The UI language is automatically detected from your Obsidian locale setting. Supported languages:
| Language | Code |
|---|---|
| 日本語 | ja |
| English | en |
| 中文 (简体) | zh |
| 한국어 | ko |
| Español | es |
Contributions, bug reports, and feature requests are welcome! Please open an issue or PR on GitHub.
MIT License — free to use, modify, and distribute.
Inspired by the Mandala Chart planning method, made famous by Shohei Ohtani's high school goal-setting chart.