input radio not checked code example
Example 1: html radio button checked
<input type="radio" id="huey" name="drone" value="huey"
checked>
Example 2: angular radio box already showing checked
<label>This rule is true if:</label>
<label class="form-check-inline">
<input class="form-check-input" type="radio" name="mode" [value]="true" [(ngModel)]="rule.mode">
</label>
<label class="form-check-inline">
<input class="form-check-input" type="radio" name="mode" [value]="false" [(ngModel)]="rule.mode">
</label>