[(ngModel)] or formControlName binds the value of the radio button as a string ("true" or "false"), not as a boolean (true or false). you need to the variable to string : fullypaidvalue: string='true'; Also change the condition of d-none class to : [class.d-none]="fullypaidvalue == 'true'"