I want to make md-checkbox
act like a radio button in Angular 1. I attempted the code below, but it does not seem to be functioning as expected. Is this even possible?
<md-checkbox class="md-primary" ng-model="color" name="color" ng-repeat="c in colors" ng-true-value="'{{c.id}}'" ng-false-value="">
{{c.name}}
</md-checkbox>
Any help would be greatly appreciated.