New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vgauge

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vgauge

A Vue Wrapper to [GaugeJS](https://github.com/bernii/gauge.js/)

  • 1.2.12-rc3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

vgauge npm

A Vue Wrapper to GaugeJS

If this package helps you, consider buying me a beer 😁

paypal

Play

Live Demo

Installing

npm i vgauge --save

or

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vgauge@latest"></script>

Usage

By Importing

import VGauge from 'vgauge';

export default {
  components: {
    VGauge
  },
  data() {
    return {
      value: 35
    };
  }
};
<v-gauge :value="value" />

By Including

<div id="app">
  <h3>Will not stop at 100</h3>
  <v-gauge :value="x" top></v-gauge>
  <h3>Will stop at 100</h3>
  <v-gauge :value="y" unit="%"></v-gauge>
</div>
<script>
  var app = new Vue({
    el: '#app',
    data: {
      x: 0,
      y: 0
    },
    mounted() {
      setInterval(() => {
        this.x += 4;
      }, 1000);
      setInterval(() => {
        if (this.y < 100) this.y += 5;
      }, 1000);
    }
  });
</script>

Props

You can use the following props

NameDescriptionTypeDefault
optionsGaugeJS render options, check gaugejs APIObjectBasic gaugejs Object
donutRenders a donut instead of a gauge #3Booleanfalse
heightheight of the gauge in pixelsString200px
widthwidth of the gauge in pixelsString200px
unitunit to show after valueString''
initialValueInitial value to display on the GaugeNumber0
valueValue to display/watchNumber50
minValueMin value for the gauge to displayNumber0
maxValueMax value for the gauge to displayNumber100
decimalPlaceShow decimal place values to which extentNumber0
topTo have the gauge value on top of the gaugeBooleanfalse
gaugeValueClassClass to apply to gauge value (Must use /deep/ in css selector)String*
animationSpeedAnimation speed for gaugeNumber10

Authors

  • Amr Essam - Github

License

This project is licensed under the MIT License

Acknowledgments

Keywords

FAQs

Package last updated on 25 Aug 2020

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