Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tohsaka888/ring-charts
https://github.com/tohsaka888/ring-charts
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tohsaka888/ring-charts
- Owner: tohsaka888
- Created: 2022-06-25T09:05:46.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T08:10:59.000Z (7 months ago)
- Last Synced: 2024-04-25T09:30:52.555Z (7 months ago)
- Language: TypeScript
- Homepage: ring-charts.vercel.app
- Size: 2.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ring-charts
## Props
```ts
export type DATASOURCE = {
name: string;
value: number;
color: string;
preTotal?: number;
};export type CANVASTYPE = {
width: number; // 画布宽度
height: number; // 画布高度
radius: number; // 圆半径
dataSource: DATASOURCE[]; //数据源
title?: string;
};
```## Example
https://user-images.githubusercontent.com/58759688/176856827-bb6601a3-612b-47b1-befe-ee360de659a3.mp4