<div class="form-check-inline">
<label class="form-check-label">
<input type="radio" class="form-check-input" checked="checked" name="radio" [(ngModel)]="radio" [value]="true">Actif
</label>
</div>
<div class="form-check-inline">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="radio" [(ngModel)]="radio" [value]="false">Désactivé
</label>
</div>
I want to set the Default checked on radio button but its not working with [(ngModel)]
.