Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular progressbar with steps

I am trying to make a progress bar with steps in Angular 12, and that the bar advances in a certain way, indicating the percentage of progress. I have seen that the vast majority of examples advance directly from one step to another and not by percentage.It is to show the level of membership and that you know how much is missing to reach the next level. I have found this example in react CustomStepper, does anyone have any similar example for angular 12? Thanks a lot!!

enter image description here

like image 316
Skymett Avatar asked Sep 11 '25 12:09

Skymett


1 Answers

I think what you are looking for is Angular Stepper but with a little modification.

This working example shows how to advance a stepper based on percentage without directly going on to the next step as well as moving to the next level on button click. Try modifying it to cater to your need!

I hope it helps.

like image 156
Swapnil Sourabh Avatar answered Sep 13 '25 02:09

Swapnil Sourabh