I am new to Angular JS and I am trying to create a set of radio buttons. Creating the buttons was the easy part, but I am having problems figuring out how to default select
General suggestion, avoid using '{{}}' use ng-bind (This will not related to question, its just good practice )
Use
ng-value="true"
If you want to control from controller.js then use
ng-checked="default_option"
and control it in controller.js
$scope.default_option = true