To add onto what @Delosdos has posted.
Set a validator for a control in the FormGroup:
this.myForm.controls['controlName'].setValidators([Validators.required])
Remove the validator from the control in the FormGroup:
this.myForm.controls['controlName'].clearValidators()