When changing the the Back color of a Control in Design view, the BackStyle property should automatically change to Normal. If the Back Color is changed via VBA code then you will need to also change the BackStyle property. 0 is for Transparent and 1 is For Normal (Solid):
Me.MyOptionGroupCtrlName.BackStyle = 1
.