[中文](./README.md)
Charts
### What is Charts?
- It is a `lightweight` chart library based on **canvas**.
### Provides
* `line`
* `bar`
* `pie`
* `radar`
* `gauge`
### Install with npm
```shell
$ npm install @jiaminghi/charts
```
### Use
```javascript
import Charts from '@jiaminghi/charts'
const container = document.getElementById('container')
const myChart = new Charts(container)
myChart.setOption({
title: 'My Chart',
// ...otherConfig
})
```
Detailed documents and examples can be viewed on the [HomePage](http://charts.jiaminghi.com).
### Quick experience
```html
```