1.0.3 • Published 7 years ago

react-svg-gauge-fork-custom v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

FORK of original React SVG Gauge(https://reggino.github.io/react-svg-gauge) by Tim de Koning https://github.com/Reggino

Simple SVG Gauge component, inspired by JustGage

Demo

Sample Gauge

Sample implementation

import React, { Component } from 'react';
import Gauge from 'react-svg-gauge';

export default class App extends Component {
	render() {
		return (
			<div>
				<Gauge value={this.state.value} width={400} height={320} label="This is my Gauge" />
			</div>
		);
	}
}

Options

  • label (default: "React SVG Gauge")
  • min (default: 0)
  • max (default: 100)
  • value (default: 40)
  • width (default: : 400)
  • height (default: 320)
  • color (default: '#fe0400')
  • backgroundColor (default: '#edebeb')
  • topLabelStyle (style object)
  • valueLabelStyle (style object)
  • minMaxLabelStyle(style object)

Styling can be done via Style-properties, or by applying CSS to SVG Text elements.

1.0.3

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago