Not loading percent when page is loaded
See original GitHub issueWhen my page is loaded I have to click for it to load the percent and it gets stuck on some percents.
module:
` NgCircleProgressModule.forRoot({ // set defaults here “radius”: 60, “outerStrokeWidth”: 10, “innerStrokeWidth”: 5, “showBackground”: false, “startFromZero”: false
})
`
html `<circle-progress [percent]=“100” [radius]=“100” [outerStrokeColor]=“‘#78C000’” [innerStrokeColor]=“‘#C7E596’” [animation]=“true” [animationDuration]=“300”
</circle-progress>`
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:18 (2 by maintainers)
Top Results From Across the Web
How to show a running progress bar while page is loading
This doesn't answer the question in any way. The OP is looking for a progress bar that display the page load progress. This...
Read more >9 Quick Ways to Improve Page Loading Speed - HubSpot Blog
Tired of the long wait? Discover simple tactics you can implement that will reduce the load time on your webpages.
Read more >How to implement a loading bar for a website? The progress ...
1. Java-scripts in your site must be loaded last i.e they must me placed after </body> tag.This is because it blocks the remaining...
Read more >How to get the loading percentage while loading a website?
I want to write a callback to implement getting the loading percentage while loading a website ,where or which function can I use?...
Read more >How to show Page Loading div until the page has finished ...
When document.readyState changes, readystatechange event fires and our function executes. If the document is not yet loaded then the body should ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Bilelkabtni I found the solution, please set
lazy: false
@iPazooki i even check the source code there is no option or event to trigger the render function there is only a Boolean renderOnclick and it just enable/disable the click event.