Radio Button

<div *ngFor="let method of contactMethods"class="radio">
    <label>
        <input 
        ngModel
        type="radio" 
        name="contactMethod"
        [value]="method.id">
        {{method.name}}
    </label>
</div>

Full SNippet

Was this page helpful?