mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
22 lines
332 B
Markdown
22 lines
332 B
Markdown
````md
|
|
::: chartjs 气泡图案例
|
|
```json
|
|
{
|
|
"type": "bubble",
|
|
"data": {
|
|
"datasets": [
|
|
{
|
|
"label": "第一个数据集",
|
|
"data": [
|
|
{ "x": 20, "y": 30, "r": 15 },
|
|
{ "x": 40, "y": 10, "r": 10 }
|
|
],
|
|
"backgroundColor": "rgb(255, 99, 132)"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
:::
|
|
````
|