# Charts **Repository Path**: arts1986/Charts ## Basic Information - **Project Name**: Charts - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-11-28 - **Last Updated**: 2023-11-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [ENGLISH](./README_EN.md)

Charts

LICENSE LICENSE

### 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 ```