<div class="btn-group" ngbRadioGroup name="radioBasic"[(ngModel)]="model">
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" (click)="event1()" /> Birthday
</label>
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" (click)="event2()" /> Birthday & Anniversary
</label>
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" (click)="event3()"/> Anniversary
</label>
</div>
In the above code the click is not able to load my function , I also tried with (ngModelChange) and (change) they are also not working