feat: 添加信息图生成功能及其多语言提示,并更新相关逻辑。

This commit is contained in:
fujie
2025-12-29 00:38:20 +08:00
parent 66a6d6b103
commit 1930d415ee
10 changed files with 1059 additions and 6 deletions

View File

@@ -158,7 +158,33 @@ data
illus mdi/delete
```
#### D. Charts (Bar/Column/Line/Pie)
#### E. Stylize Configuration
You can apply specific visual styles using the `theme` block.
**Supported Styles (`stylize`):**
- `rough`: Hand-drawn style
- `pattern`: Pattern fill
- `linear-gradient`: Linear gradient fill
- `radial-gradient`: Radial gradient fill
**Example (Rough Style):**
```infographic
infographic list-row-simple-horizontal-arrow
theme
stylize rough
data
...
```
**Example (Gradient Style):**
```infographic
infographic chart-bar
theme
stylize linear-gradient
data
...
```
#### F. Charts (Bar/Column/Line/Pie)
Use `items` with `label` and `value`.
```infographic