mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
26 lines
480 B
Markdown
26 lines
480 B
Markdown
````md
|
|
::: chartjs 玫瑰图案例
|
|
```json
|
|
{
|
|
"type": "polarArea",
|
|
"data": {
|
|
"labels": ["红色", "绿色", "黄色", "灰色", "蓝色"],
|
|
"datasets": [
|
|
{
|
|
"label": "我的第一个数据集",
|
|
"data": [11, 16, 7, 3, 14],
|
|
"backgroundColor": [
|
|
"rgb(255, 99, 132)",
|
|
"rgb(75, 192, 192)",
|
|
"rgb(255, 205, 86)",
|
|
"rgb(201, 203, 207)",
|
|
"rgb(54, 162, 235)"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
:::
|
|
````
|