Этот код будет работать, если флажок установлен в ngFor l oop
discheckcondition = [1,2,3];
for (let x = 0; x < this.discheckcondition.length; x++) {
this.disablecheckfornext[x] = false;
if (this.discheckcondition[x] = '2') {
this.disablecheckfornext[x] = true;
};
}
<input id="checkbox_group1" type="checkbox" pattern="[0-9]{10}" [disabled]=" disablecheckfornext[#i]" value="" (change)="onCheckboxChange($event)"/>