Ionic 中的全圆规
Full circle gauge in Ionic
当我尝试在 Ionic 中包含一个完整的圆 Gauge/Gage 时遇到问题,因为仪表从未出现。
有没有人像这样成功地在 ionic 中包含一个完整的圆规:
我找到了一个GitHub可以完美的(从设计的角度):
https://github.com/crisbeto/angular-svg-round-progressbar
所以,我刚刚补充说
<script>
import {NgModule} from '@angular/core';
import {RoundProgressModule} from 'angular-svg-round-progressbar';
@NgModule({
imports: [RoundProgressModule]
})
export class YourModule {};
</script>
在我的 index.html 之后 运行 npm install angular-svg-round-progressbar --save
在控制台中。
然后我在我的一个模板中添加了回合 progress tag
,但是什么都出现了。
如果您通读 issues in github of that library, you will find one that says the lib does not work in angular 2. See this https://github.com/crisbeto/angular-svg-round-progressbar/issues/65
有一些解决方法,比如使用另一个库,这个 https://github.com/subarroca/ng2-kw-gauge
当我尝试在 Ionic 中包含一个完整的圆 Gauge/Gage 时遇到问题,因为仪表从未出现。
有没有人像这样成功地在 ionic 中包含一个完整的圆规:
我找到了一个GitHub可以完美的(从设计的角度):
https://github.com/crisbeto/angular-svg-round-progressbar
所以,我刚刚补充说
<script>
import {NgModule} from '@angular/core';
import {RoundProgressModule} from 'angular-svg-round-progressbar';
@NgModule({
imports: [RoundProgressModule]
})
export class YourModule {};
</script>
在我的 index.html 之后 运行 npm install angular-svg-round-progressbar --save
在控制台中。
然后我在我的一个模板中添加了回合 progress tag
,但是什么都出现了。
如果您通读 issues in github of that library, you will find one that says the lib does not work in angular 2. See this https://github.com/crisbeto/angular-svg-round-progressbar/issues/65
有一些解决方法,比如使用另一个库,这个 https://github.com/subarroca/ng2-kw-gauge