How to change the background color of uiradiobuttons?
Show older comments
I have a few uibuttongroups in my app and to distinguish them visually I want to apply different background colors to them. But the radiobuttons' backgroundcolor can't be changed so the whole setup looks a bit weird.
Here is a sample code:
bg=uibuttongroup(uifigure,'BackgroundColor',[0.8 0.9 1],'Position',[100 100 150 150]);
rb1=uiradiobutton(bg,'Text','Previous','Position',[10 100 75 20]);
rb2=uiradiobutton(bg,'Text','Next','Position',[10 50 75 20]);
%rb1.BackgroundColor=[0.8 0.9 1]; %Won't work!

In addition, the default background grey of uibuttongroup & uiradiobutton are slightly different in R2025a so even with the default colors, it feels like something is off!

1 Comment
Accepted Answer
More Answers (1)
UPDATED -- CORRECTED EARLIER USE OF UIBUTTON() INSTEAD OF UIRADIOBUTTON()
It turns out for some reason the BackgroundColor property for the 'uiradiobutton'. is indeed hidden and under the 'NodeParent' (also hidden) property.
Try
hUIRB=uiradiobutton();
hUIRB.NodeParent.BackgroundColor='r';
and see if it doesn't get set to red...for action, pick up the background color of the container or, as you noted, set a coded value by function or other criteria.
I suggest reporting as an implementation shortcoming to Mathworks as an official support request/bug at <Product Support Page>, not being able to set the background color does seem like an oversight; possibly because things aren't yet done. Or, perhaps, it was just an oversight.
7 Comments
JKMSMKJ
on 31 Jul 2025
ADDENDUM/ERRATUM:
My bad, I mistakenly typed 'uibutton' when I tested here instead of 'uiradiobutton'.
It turns out for some reason the BackgroundColor property for the 'uiradiobutton'. is indeed hidden and under the 'NodeParent' (also hidden) property.
Try
hUIRB=uiradiobutton();
hUIRB.NodeParent.BackgroundColor='r';
and see if it doesn't get set to red...I'll edit the Answer
JKMSMKJ
on 31 Jul 2025
Curious. It works here with R2021b; another problem introduced with later release, apparently.
There are so many issues with R2024 on and it takes so long to install for just playing I haven't updated past R2022b here.
Setting that BackgroundColor sets the entire group background including the button itself so it is true that can't make a contrast as you hoped. I thought the first time I did this it only did the button itself, but that's probably what I recalled when I did the inadvertent uibutton instead of uiradiobutton and didn't pay close enough attention later.
It does appear for the 'SelectedObject' child that is the raido button under the 'NodeType' parent that there indeed is not a 'BackgroundColor' property, hidden or not.
JKMSMKJ
on 1 Aug 2025
dpb
on 1 Aug 2025
JKMSMKJ
on 1 Aug 2025
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!