Files
akmon/test_new_charts.md
2026-01-20 08:04:15 +08:00

21 lines
452 B
Markdown

# Test New Mermaid Charts
## Radar Chart
```mermaid
radar-beta
title Tech Skills
x-axis [HTML, CSS, JS, React, Node, Python]
y-axis 0 --> 100
Tech 1: [80, 90, 85, 95, 88, 92]
Tech 2: [70, 75, 80, 85, 78, 82]
```
## XY Chart with Line
```mermaid
xychart-beta
title ""Sales Revenue""
x-axis [jan, feb, mar, apr, may, jun]
y-axis ""Revenue (in $)"" 0 --> 100
bar [5, 6, 7, 8, 9, 10]
line [2, 3, 4, 5, 6, 7]
```