I have a simple angularJs example, where actually I have to show red background to label infront of radio box that is checked. However, I cannot find selected or isChecked property in the input type="radio" selected so I can add CSS based on it.
HTML
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myCtrl">
<p ng-repeat="x in questions">
<input type="radio" id="{{x.id}}" name="{{x.name}}"><label for="{{x.id}}">{{x.value}}</label>
</p>
<script>
var app = angular.module("myApp", []);
app.controller('myCtrl',function($scope){
$scope.questions = [
{value:"red",name:"color",id:"1"},
{value:"blue",name:"color",id:"2"},
{value:"yellow",name:"color",id:"3"}
];
});
</script>
</body>
</html>

