简体   繁体   中英

How to change value in view

I'm try to change property [options.arcDelimiters]="50" in view.

this is my link to code Stackblitz

Thanks

You can change arcDelimiters inside options , like so ( stackblitz ) - it accepts an array of numbers from 0 to 100 ( angular-gauge-chart ):

 // app.component.ts

 ngOnInit() {
  this.options = {
    arcDelimiters: [50],
    ...
 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM