Imagine having a component html with your own customized round progress bar
<round-progress #progress
[current]="current"
</round-progress>
The "Current" value represents the percentage. In my TypeScript component, I have written:
this.percentageSubscription = this.percentageService.percentage$.subscribe((percentage) => {
this.current = this.current + percentage;
console.log(this.current);
});
When I print the value, it shows the correct increment based on another algorithm. The console.log displays the accurate increase, but for some reason, the progress bar does not reflect this change.
Seeking assistance from someone who can help resolve this issue.