Encountering an issue when attempting to incorporate a complete circle Gauge/Gage in Ionic, as the gauge fails to display.
Has anyone managed to successfully include a full circle Gauge in Ionic similar to this:
https://i.sstatic.net/OKcpD.jpg
Came across a GitHub repository that offers a seemingly perfect solution (visually):
https://github.com/crisbeto/angular-svg-round-progressbar
Hence, I proceeded by inserting:
<script>
import {NgModule} from '@angular/core';
import {RoundProgressModule} from 'angular-svg-round-progressbar';
@NgModule({
imports: [RoundProgressModule]
})
export class YourModule {};
</script>
into my index.html after executing npm install
angular-svg-round-progressbar --save
in the command line. Next, introduced the round progress tag
into one of my templates, but unfortunately no visible progress was seen.