I have set up multiple radio button groups by dynamically populating options using ngFor within a ngFor loop.
categories:string[] = [category_1, ..., category_n];
options:string[] = [option_1, ..., option_n];
<fluent-radio-group
*ngFor='let categroy from categories'
(change)='some_function()'>
<fluent-radio
*nfFor='let option from options'
value=value>
value
</fluent-radio>
</fluent-radio-group>
Now, I am looking for a way to access the selected values of each category in the 'some_function()'. How can I identify and retrieve these values?
I have attempted utilizing an Input variable through ElementRef. While it works, this method becomes cumbersome with numerous categories.