1.0.18 • Published 6 years ago

react-radial-progress-motion v1.0.18

Weekly downloads
12
License
MIT
Repository
github
Last release
6 years ago

react-radial-progress-motion

Radial progress with react-motion for transitions

Example Progress

NPM JavaScript Style Guide

Install

npm install --save react-radial-progress-motion

This component is uses react-motion, so ensure that is installed as well.

npm install --save react-motion

Usage

import React, { Component } from 'react'

import RadialProgress from 'react-radial-progress-motion'

class MyComponent extends Component {
  render () {
    return (
      <RadialProgress  />
    )
  }
}

Props

PropInput
valueInteger. Required. Value to display, defaults to min.
minInteger. Minimum value of the scale, defaults to 0.
maxInteger. Maximum value of the scale, defaults to 100.
widthString. Width in px or % of radial meter (100px, 100%). Defaults to 100%
startingPointString. The min value start point; top, bottom, left, right, or degrees, (-90, 180, 270). Defaults to top
radialStyleString. Adjust from full circle to a arc segment, simply provide percentage of circle in decimal value (.9, .5, .33), and it will create a semi-circle meter.
springObject. A react-motion spring config object e.g. {stiffness: 120, damping: 17}. Defaults to {stiffness: 170, damping: 26}. Please see react-motion documentation for full options.
indWidthInteger. width of line-stroke of indicator bar 1-50, defaults to 10
indColorString. color of indicator bar in hex, rgb, or rgba value #111111, rgb(255,255,255), rgba(255,255,255,1)
emptyIndWidthInteger. Width of line-stroke of empty indicator bar (the bar that is to be filled in)1-50, defaults to 10
emptyIndColorString. Color of empty indicator bar in hex, rgb, or rgba value #111111, rgb(255,255,255), rgba(255,255,255,1), defaults to #efefef.
trackWidthInteger. Width of line-stroke of track bar 1-50, defaults to 10
trackColorString. Color of track bar in hex, rgb, or rgba value #111111, rgb(255,255,255), rgba(255,255,255,1), defaults to #e3e3e3
endCapsString. Shape of endcaps on lines, round or square, defaults to round

License

MIT © apttap

1.0.18

6 years ago

1.0.17

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago