My intention was to align the radio buttons as shown in the image below:
https://i.stack.imgur.com/oPTjD.jpg
However, the final result looked like this
https://i.stack.imgur.com/Mixga.jpg
Below is the code for your reference
HTML
<div class="form-group">
<label *ngFor="let radiobutton of radioItems">
<input type="radio" name="options" (click)="model.option = radiobutton"
[checked]="radiobutton === model.option">{{radiobutton}}
</label>
</div>
CSS
.form-group {
margin: 2px auto;
width: 12rem;
position: relative;
overflow-wrap: break-word;
column-count: 2;
clear: both;
}
Check out the Demo here for a visual demonstration.