[ENGLISH](./README_EN.md)
Charts
### Charts是干什么的?
- 它是一个基于**canvas**的`轻量`图表库.
### 支持
* `折线图`
* `柱状图`
* `饼状图`
* `雷达图`
* `仪表盘`
### npm安装
```shell
$ npm install @jiaminghi/charts
```
### 使用
```javascript
import Charts from '@jiaminghi/charts'
const container = document.getElementById('container')
const myChart = new Charts(container)
myChart.setOption({
title: 'My Chart',
// ...otherConfig
})
```
详细文档及示例请移步[HomePage](http://charts.jiaminghi.com).
### 快速体验
```html
```