hi @indhaa that is the default behavior for the radio button.
you can add label to the datacard and set its
Text = DataCardValue16.SelectedText.Value

Now unlock the radio datacard and set the radios' datacardvalue
Visible =If(Form1.DisplayMode = DisplayMode.View,false,true)
the radio button will now be visible when the form is not in view

Now set the label you added Visible = !DatacardValue.Visible . Place the label where you wish it to show.
When the form is in view the radio button is hidden and the text with its value shows

Hope this helps