All Projects → michigan-com → react-gauge

michigan-com / react-gauge

Licence: MIT license
ReactJS Gauge Component

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to react-gauge

Angular Gauge
A reusable gauge directive for Angular 1.x apps and dashboards
Stars: ✭ 96 (+585.71%)
Mutual labels:  gauge
Lmgaugeview
LMGaugeView is a simple and customizable gauge control for iOS.
Stars: ✭ 224 (+1500%)
Mutual labels:  gauge
ArduinoWeatherOS
Arduino Uno, 433MhzRx and OS WMR86 Weather Station
Stars: ✭ 69 (+392.86%)
Mutual labels:  gauge
Nativescript Ui Feedback
This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Stars: ✭ 110 (+685.71%)
Mutual labels:  gauge
React D3 Speedometer
✨ ⚛️ React Speedometer component using d3.js 🌈 🎨
Stars: ✭ 162 (+1057.14%)
Mutual labels:  gauge
awesome-testing
Software Testing for QA.
Stars: ✭ 48 (+242.86%)
Mutual labels:  gauge
Gaugeslider
Highly customizable GaugeSlider designed for a Smart Home app. Featured at Medium.
Stars: ✭ 89 (+535.71%)
Mutual labels:  gauge
ng2-gauge
⏲ Gauge component for Angular
Stars: ✭ 52 (+271.43%)
Mutual labels:  gauge
Svg Gauge
Minimalistic, animated SVG gauge. Zero dependencies
Stars: ✭ 188 (+1242.86%)
Mutual labels:  gauge
GaugeProgressView
Tired of boring Android progress views? This one is amazing!
Stars: ✭ 17 (+21.43%)
Mutual labels:  gauge
Gps Overlay On Video
Telemetry (GPS) data overlay on videos
Stars: ✭ 136 (+871.43%)
Mutual labels:  gauge
Ngx Gauge
A highly customizable Gauge component for Angular 9+ apps and dashboards
Stars: ✭ 158 (+1028.57%)
Mutual labels:  gauge
react-canvas-gauges
React Canvas Gauges Component based on Canvas gauges
Stars: ✭ 25 (+78.57%)
Mutual labels:  gauge
Canvas Gauges
HTML5 Canvas Gauge. Tiny implementation of highly configurable gauge using pure JavaScript and HTML5 canvas. No dependencies. Suitable for IoT devices because of minimum code base.
Stars: ✭ 1,443 (+10207.14%)
Mutual labels:  gauge
rockiot-ui
Webcomponent for IoT Dashboards, HTML Gauges and more
Stars: ✭ 42 (+200%)
Mutual labels:  gauge
Hs Gauge
Lean Haskell Benchmarking
Stars: ✭ 91 (+550%)
Mutual labels:  gauge
MaxSoft-IntelliAPI
First-ever code-free and lightweight cross platform API and database test automation tool.
Stars: ✭ 14 (+0%)
Mutual labels:  gauge
inspector-metrics
Typescript metrics / monitoring library
Stars: ✭ 19 (+35.71%)
Mutual labels:  gauge
gauge-csharp
Csharp runner for Gauge
Stars: ✭ 34 (+142.86%)
Mutual labels:  gauge
gobench
A benchmark framework based on Golang
Stars: ✭ 50 (+257.14%)
Mutual labels:  gauge

React Gauge

Gauge Example

Install

npm install react-gauge --save

Usage

Default usage

<Gauge value={25}/>

Change the color of the Gauge

<Gauge value={25} primaryColor="#7D9F35"/>

Instead of a color, use gradients! Take an array of objects with width a stop percent value (e.g. p: 50) and a color (e.g. color: $ffff00) and we'll render an SVG gradient.

<Gauge
  value={25}             
  gradient={[
    {p: 0, color: "#ff0000"},
    {p: 50, color: "#ffff00"},
    {p: 75, color: "#ffc107"},
    {p: 100, color: "#00920b"},
  ]}
  />

Contributing

We don't have any tests, but we do have an example HTML file to test out changes.

First, install

npm install

Then after making your changes...

Build your changes into dist

npm run build:src

Example

To "test" out your changes, build the example code...

npm run build:example

...then open the example HTML file in your browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].