With pure HTML only as stated in my comment on your question os names devem ser iguais
When a RADIO option is checked, it will only be unchecked when another RADIO option with the same name is selected
If you need to keep different Ames, consider using jquery. example:
$(document).ready(function () {
$('input[type=radio]').change(function() {
$('input[type=radio]:checked').not(this).prop('checked', false);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div><label for="b_ant">Base Anterior</label><input name="b_ant" type="radio" value="S" /></div>
<div><label for="b_grade">Base na Grade</label><input name="b_grade" type="radio" value="S" /></div>
<div><label for="b_grade">Base em Veículos Novos</label><input name="b_novos" type="radio" value="S" /></div>
not() selects all elements except the specified element.
prop() prop('checked', false)
used to uncheck.
not(this).prop('checked', false);
will uncheck all radios inputs except the selected one
the Names shall be equal
– user60252