Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gaugeJS

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gaugeJS

100% native and cool looking animated JavaScript/CoffeeScript gauge

  • 1.3.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.9K
increased by7.25%
Maintainers
0
Weekly downloads
 
Created
Source

gauge.js

100% native and cool looking animated JavaScript/CoffeScript gauge.

  • No images, no external CSS - pure canvas
  • No dependencies
  • Highly configurable
  • Resolution independent
  • Animated gauge value changes
  • Works in all major browsers
  • MIT License

Usage

var opts = {
  angle: 0.15, /// The span of the gauge arc
  lineWidth: 0.44, // The line thickness
  pointer: {
    length: 0.9, // Relative to gauge radius
    strokeWidth: 0.035 // The thickness
  },
  colorStart: '#6FADCF',   // Colors
  colorStop: '#8FC0DA',    // just experiment with them
  strokeColor: '#E0E0E0'   // to see which ones work best for you
};
var target = document.getElementById('foo'); // your canvas element
var gauge = new Gauge(target).setOptions(opts); // create sexy gauge!
gauge.maxValue = 3000; // set max gauge value
gauge.setMinValue(0);  // set min value
gauge.set(1250); // set actual value

For an interactive demo and a list of all supported options please refer to the project's homepage.

Wrappers

gauge.js can be wrapped to a number of frameworks. Here are some examples:

Build instructions

Build is a two-step process. First, the CoffeeScript source gauge.coffee is converted to gauge.js. Next, terser produces the minified distribution file gauge.min.js.

# Install development dependencies
npm install
# Run the build
npm run build

FAQs

Package last updated on 23 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc