I am trying to implement Radio button uncheck on second click in Angular 2+ as done here in angularjs. I have an array of objects that get displayed using *ngFor, therefore I ha
You need to bind the radio value to an ngModel and either listen to the ngModelChange or click event instead of change.
ngModel
ngModelChange
click
change
This answer might help you as well https://stackoverflow.com/a/42447116/4544288