What you want to do is remove checked and set the pre-selected value to formControl , so when creating the form:
constructor(private fb: FormBuilder) { this.myForm = this.fb.group({ options: ['1'] }) }
and then just remove the checked attribute:
<mat-radio-group formControlName="options"> <mat-radio-button value="1">Option 01</mat-radio-button> <mat-radio-button value="2">Option 02</mat-radio-button> </mat-radio-group>
source share