I have problem on md-checkbox.
I need to use single selection of check but I couldn't make it.
I referred md-radio-button for groupings but I don't want to use radio button.
Below is my code:
<ul>
<li>
<md-checkbox ng-model="data1" aria-label="Checkbox 1">
Full Time
</md-checkbox>
</li>
<li>
<md-checkbox ng-model="data2" aria-label="Checkbox 1">
6AM - 12 PM
</md-checkbox>
</li>
<li>
<md-checkbox ng-model="data3" aria-label="Checkbox 1">
12PM - 9PM
</md-checkbox>
</li>
</ul>
Can anyone help me.