Im new to angular, currently working with version 5. I have to install a plugin called 'jquery-circle-progress', which can be found here: http://kottenator.github.io/jquery-circle-progress/
I've installed it with via npm, and added the .js file to .angular-cli.json scripts array. It seems to load fine, and I can activate it with jquery via browsers console, so this part is ok.
I just dont know how to run it from inside the component. I have to update this progress bar every minute or so, so I wanna make a function in mycomponent.component.ts, which fetches some data, checks it, and runs some jquery to update the progress bar.
I just cant get this progress-bar's function to be available here. It just says that '.circleProgress is not available'.
BTW I can get jquery to run inside of the .ts file, via:
import * as $ from 'jquery';
I dont know how to also get circle progress bar in here.
Any help is more than welcome.