mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
22 lines
401 B
Markdown
22 lines
401 B
Markdown
````md
|
|
::: chartjs 折线图案例
|
|
```json
|
|
{
|
|
"type": "line",
|
|
"data": {
|
|
"labels": ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
|
|
"datasets": [
|
|
{
|
|
"label": "我的第一个数据集",
|
|
"data": [65, 59, 80, 81, 56, 55, 40],
|
|
"fill": false,
|
|
"borderColor": "rgb(75, 192, 192)",
|
|
"tension": 0.1
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
:::
|
|
````
|