1.0.4 • Published 5 years ago

react-curve v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

react-curve

从天气预报项目中抽取出来的基于svg的圆滑折线图组件。gitlab地址

usage

npm install --save react-curve
// 引入
import ReactCurve from 'react-curve'
// demo
<ReactCurve lineColor="#F99952" textPosition="bottom" data={[10,13,15,20,10,12]} offset={30} width={800} height={100} contentHeight={50}/>,
参数值类型意义
lineColorstring曲线线条颜色
textPositionstring数字位于线条上方/下方
dataarray要展示的数据
offsetnumber线条向下偏移量(默认是10)
widthnumber组件宽度
heightnumber组件高度
contentHeightnumber内容高度即线条最高峰和最低分的高低差

ps 为了避免图层被遮挡,建议 height >= 2* contentHeight

result

react-curve-bottom