<div class="row">
<div class="btn-group btn-group-toggle mx-auto" data-toggle="buttons">
<label class="btn" *ngFor="let item of good.price_typeing; let idx = index" [class.active]="idx === 0">
<input type="radio" name="property" [value]="item.property" [checked]="idx === 0">
{{item.property}}
</label>
</div>
</div>