мои component.ts выглядят как показано ниже
import { CircleProgressComponent, CircleProgressOptions } from 'ng-circle-progress';
percentValue: number;
this.percentValue = '90'
ниже мой compoment.html,
<circle-progress #circleProgress
[percent]="99"
[title]="options.title"
[units]="options.units">
</circle-progress>
хотите передать [процент] от привязки, как показано ниже
<circle-progress #circleProgress
[percent]="{percentValue}"
[title]="options.title"
[units]="options.units">
</circle-progress>
Но это дает ошибку и прекращает рендеринг страницы.
Любая идея, как передать значение динамически