The circular progress bar I have created was inspired by the angular-circular-progress repository on GitHub.
This is my current progress input:
https://i.sstatic.net/nDgfO.png
I am looking to customize the end of the progress bar with a small CIRCLE and a VALUE CENTRE that shows real-time animation value based on svg movement. How can I achieve this? Your help would be greatly appreciated.
This is the expected output:
https://i.sstatic.net/ZR4Zm.png
Here is my current code snippet:
angular.module('myModule', ['angular-circular-progress'])
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="http://pencil.my/assets/js/circularProgress.js"></script>
<div ng-app="myModule">
<circular-progress
value="80"
max="100"
orientation="1"
radius="100"
stroke="10"
base-color="#fff"
progress-color="#f9991d"
iterations="100"
animation="easeInOutCubic"
></circular-progress>
</div>