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

vue-gauge-circle

v1.0.1

Published

Elevate your Vue 3 applications with CircleProgress, a beautifully designed and highly customizable circular progress bar component.

Downloads

168

Readme

Welcome to CircleProgress!

CircleProgress

CircleProgress - A Circular Progress Bar Component for Vue 3

Elevate your Vue 3 applications with CircleProgress, a beautifully designed and highly customizable circular progress bar component. Built with Echart for maximum performance and responsiveness, CircleProgress offers a sleek and modern way to visualize progress in any project.

Whether you're building dashboards, progress indicators, or any visual representation of data, CircleProgress gives you the flexibility to tailor every aspect to fit your design needs. With its lightweight architecture, you can effortlessly integrate it into your Vue applications without sacrificing performance.

Key Features:

  • Customizable Styles: Adjust colors, sizes, and animations to match your app's theme effortlessly.

  • Lightweight & Efficient: Designed to be resource-friendly while providing a stunning visual experience.

  • Responsive Design: Perfectly scales to fit any screen size, ensuring a consistent look across devices.

  • Easy Integration: Simple to implement and configure, making it a breeze to add to your projects.

Unlock the potential of your user interfaces with CircleProgress and make your applications not just functional, but visually captivating!

Installation

npm install --save vue-gauge-circle

Adding into app

import { CircleProgress } from "vue-gauge-circle";

<CircleProgress 
    :progressValue="70"
    :minValue="0" 
    :maxValue="100" 
    :viewport="100"
    :fontSize="14" 
    :fontLineHeight="19"
    :lineWidth="10"
    :fontColor="'rgba(15, 31, 60, 1)'"
    :offsetColor="'rgba(227, 237, 255, 1)'"
    :progresColor="'rgba(66, 131, 252, 1)'"
/>

Props

The CircleProgress component allows you to customize the progress bar using the following props:

| Prop Name | Type | Description | Default | |-------------------|----------|-------------------------------------------|--------------------------| | progressValue* | Number | Current value of the progress bar. | - (required) | | minValue* | Number | Minimum value for the progress bar. | 0 | | maxValue* | Number | Maximum value for the progress bar. | 100 | | fontSize | Number | Font size of the progress text. | 22 | | fontLineHeight | Number | Line height for the progress text. | 29 | | fontColor | String | Color of the progress text. | rgba(15, 31, 60, 1) | | offsetColor | String | Color of the background circle. | rgba(227, 237, 255, 1) | | progresColor | String | Color of the progress indicator. | rgba(66, 131, 252, 1) | | lineWidth | Number | Width of the progress line. | 15 | | viewport | Number | Size of the circular progress bar. | 100 |