CQKM a409836b9c '' | hace 6 años | |
---|---|---|
config | hace 6 años | |
public | hace 6 años | |
scripts | hace 6 años | |
src | hace 6 años | |
.gitignore | hace 6 años | |
README.md | hace 6 años | |
images.d.ts | hace 6 años | |
package.json | hace 6 años | |
tsconfig.json | hace 6 años | |
tsconfig.prod.json | hace 6 años | |
tsconfig.test.json | hace 6 años | |
tslint.json | hace 6 años | |
yarn.lock | hace 6 años |
yarn
yarn start
interface Iprops {
bgColor?: string, // 十六进制色值 背景色
color?: string, // 十六进制色值
height: number, // 画布高
label?: string, // 画布文字
lineCap?: string, // 线条样式 round, butt, square
lineSize?: number, // 线条大小
nowValue?: number, // 当前角度(需换算,总角度360,(当前值/总值)*360)
radius: number, // 半径
width: number, // 画布宽
}
<Dashboard width={300} height={300} radius={100} nowValue={a}>
// 支持children
<div className='sale'>
<p>销售额</p>
<p className='sale_percent'>{(a / 360) * 100}%</p>
</div>
</Dashboard>