Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 738 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 738 Bytes

react-gauge-meter

Install

$ npm install react-gauge-meter

Usage

For Demo, you can see: https://kokim2022.github.io/react-gauge-meter/

import ReactGaugeMeter from 'react-gauge-meter'; 

<ReactGaugeMeter
  firstColor="red"
  secondColor="green"
  thirdColor="blue"
  value={50}
  style={{height: '500px', width: '100%'}}
/>

Props of Component

  • firstColor (required, color) for example: #67e0e3 or red

  • secondColor (required, color)

  • thirdColor (required, color)

  • style (optional, object)

the style of echarts div. object, default is {height: '300px'}.

LICENSE

MIT@kokim2020.