I have worked on angular 4 project, In this project, I have a requirement to set the first option as selected where all options are created dynamically by loop. html code:
Just in your ts, inside ngOnInit
ngOnInit
selectedServiceType : any; ngOnInit() { //make sure you have values for **`services`** this.selectedServiceType = services[0]; }