npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-circular-gauge

v1.1.1

Published

Pretty gauges for React

Downloads

217

Readme

React Circular Gauge

A React gauge component for visualizing numbers.

  • Rendered using SVG
  • Out of the box support for animation using react-spring
  • Expressive and consistent API with sensible defaults
  • Written in TypeScript

Demo

Installation

npm i react-circular-gauge

Usage

import { Gauge } from 'react-circular-gauge'
import chroma from 'chroma-js'

const Speedometer = () => (
  <Gauge
    value={25}
    minValue={0}
    maxValue={100}
    renderBottomLabel="km/h"
    arcColor={({ normValue }) => chroma.scale(['green', 'red'])(normValue).css()}
  />
)

Check out the demo source code for additional usage examples.

Reference

Gauge

Gauge accepts the following props, all of which are optional.

| Name | Type | Default | Description | | ------------------- | -------------------------- | ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | | value | number | 0 | Gauge value, clamped between minValue and maxValue | | minValue | number | 0 | Minimum possible value | | maxValue | number | 100 | Maximum possible value | | startValue | number | minValue | Value between minValue and maxValue where the arc should be drawn from. Arc will draw in reverse from this point if value < startValue | | startAngle | number | 0 | Angle corresponding to minValue, measured in degrees clockwise from the positive y axis | | endAngle | number | 0 | Angle corresponding to maxValue, measured in degrees clockwise from the positive y axis | | direction | 'cw' \| 'ccw' | 'cw' | Direction of the arc from startAngle to endAngle, 'cw' for clockwise or 'ccw' for counterclockwise | | renderValue | RenderableString | ({ fmtValue }) => fmtValue | A string or a function from RenderableStringArgs to a string for displaying the value | | renderTopLabel | RenderableString | undefined | A string or a function from RenderableStringArgs to a string for displaying a label above the value | | renderBottomLabel | RenderableString | undefined | A string or a function from RenderableStringArgs to a string for displaying a label below the value | | renderContent | RenderableNode | undefined | ReactNode or a function from RenderableNodeArgs to ReactNode for displaying the gauge content, overrides the render props above if passed | | roundDigits | number | 0 | Number of decimal places to round fmtValue to as provided by RenderableStringArgs and RenderableNodeArgs | | arcWidth | number | 0.1 | Arc width as a fraction of the gauge radius | | trackWidth | number | 0.1 | Track width as a fraction of the gauge radius | | arcCornerRadius | number | 0.5 | Arc corner radius as a fraction of the arc width | | trackCornerRadius | number | 0.5 | Track corner radius as a fraction of the track width | | arcColor | RenderableString | 'black' | A CSS color value or a function from RenderableStringArgs to a CSS color value | | trackColor | string | 'transparent' | A CSS color value | | valueStyle | CSSProperties | undefined | Styles applied to the value | | topLabelStyle | CSSProperties | undefined | Styles applied to the top label | | bottomLabelStyle | CSSProperties | undefined | Styles applied to the bottom label | | animated | boolean | true | Whether to animate changes in value | | springConfig | Partial<AnimationConfig> | undefined | Spring configuration passed to react-spring |

RenderableString

RenderableString is defined as string | ((args: RenderableStringArgs) => string). The function form should be used for a string that animates based on the gauge value. RenderableStringArgs is an object with the following properties.

| Name | Type | Description | | ----------- | -------- | ----------------------------------------------------------------------------------------------- | | value | number | The current value of the animation as interpolated between the previous and current gauge value | | fmtValue | string | value converted to a string and with rounding applied | | normValue | number | value normalized to the range [0, 1] | | rawValue | number | The current value provided to the gauge, not animated |

RenderableNode

RenderableNode is defined as ReactNode | ((args: RenderableNodeArgs) => ReactNode). The function form should be used for a ReactNode that animates based on the gauge value. RenderableNodeArgs is an object with the following properties.

| Name | Type | Description | | ----------- | ------------------------------- | ----------------------------------------------------------------------------------------------- | | value | SpringValue<number> | The current value of the animation as interpolated between the previous and current gauge value | | fmtValue | Interpolation<number, string> | value converted to a string and with rounding applied | | normValue | Interpolation<number, number> | value normalized to the range [0, 1] | | rawValue | number | The current value provided to the gauge, not animated |