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 🙏

© 2026 – Pkg Stats / Ryan Hefner

angular-circliful

v0.1.4-beta

Published

circle statistic for angular

Downloads

155

Readme

Angular Circliful

Draws an animatable svg circle with some other features in your angular projects.

Getting started

Install circliful in your project

npm install angular-circliful

Once installed you need to import the module:

import {AngularCirclifulModule} from 'angular-circliful';

@NgModule({
  ...
  imports: [AngularCirclifulModule, ...],
  ...
})
export class AppModule {}

Integrate the component somewhere in your Application

export class YourComponent {
percent = { value: 60 };
strokeWidth: 15;
color: 'blue';
}
<ac-angular-circliful 
[percent]="percent" 
[strokeWidth]="strokeWidth"
[color]="color">
</ac-angular-circliful>

Available Options

| property | default | type | description | ------------- |------------- | ----- | ----- | | percent | / | object | the percentage of the circle | color | #666 | string | color foreground circle | gradient | / | object | startColor and endColor for gradient of foreground circle | customClasses | / | object | set custom css classes for each svg child element | strokeLinecap | butt | string | style of stroke endings | strokeWidth | 15 | number | stroke width of foreground circle | progressColors | / | array | holds an array of objects with color and percent, the percent value is the starting point for the color change | backgroundCircle | / | object | config for the background circle | animate | true | boolean | animation of the foreground circle | animateInView | false | boolean | animation of the foreground circle in viewport | text | / | object | config for the info text | point | / | object | config for a point in the center

percent percentage text and percentage fill of foreground circle

| property | default | type
| ------------- |------------- | ----- | | value | / | number | color | / | string noPercentageSign | false | boolean

gradient start end end color of gradient

| property | default | type
| ------------- |------------- | ----- | | startColor | / | string | endColor | / | string

customClasses set custom css classes for each svg child element

| property | default | type
| ------------- |------------- | ----- | | foregroundCircle | / | string | backgroundCircle | / | string | percent | / | string | text | / | string | svgContainer | / | string | point | / | string

progressColors holds an array of objects with color and percent, the percent value is the starting point for the color change

| property | default | type
| ------------- |------------- | ----- | | color | / | string | percent | / | number

backgroundCircle config for the background circle

| property | default | type
| ------------- |------------- | ----- | | color | / | string | strokeWidth | / | number

text config for the info text

| property | default | type
| ------------- |------------- | ----- | | position | 'middle' | string | x | / | number | y | / | number | content | / | string

point config for a point in the center

| property | default | type
| ------------- |------------- | ----- | | color | / | string | radius | / | number

Donation

If you find this module useful or/and use it commercially feel free to donate me a cup of coffee :)