kimmobrunfeldt / progressbar.js

Responsive and slick progress bars

Home Page:https://kimmobrunfeldt.github.io/progressbar.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ProgressBar.Circle is not working on angular

opened this issue · comments

I am making the admin dashboard site with angular 7.
I decide to semi circle progressbar with progressbar.js
So I installed ProgressBar like this
npm install progressbar.js
And I imported progressbar from progressbar.js on component.ts like this
import {ProgressBar} from 'progressbar.js';

and I used the container and used like this
var container = document.getElementById("container");

var semibar = new ProgressBar.SemiCircle(container,{
stroke:9.6,
......
......

});

But ProgressBar.SemiCircle is not working...
Please help me..