How to change the background color of uiradiobuttons?

20 Ansichten (letzte 30 Tage)
JKMSMKJ
JKMSMKJ am 31 Jul. 2025
Kommentiert: Jeff am 28 Aug. 2025
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 Kommentar
Orion
Orion am 11 Aug. 2025
Verschoben: dpb am 11 Aug. 2025
This looks to have been introduced in an r2025a update, as in my initial r2025a install this issue was not present (had buttons where the background color was the same as whatever color you set for the background component).

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Maddie
Maddie am 19 Aug. 2025
Bearbeitet: Maddie am 19 Aug. 2025
It seems that this tends to pop up when the Interpreter property of the radio button is set to "none". If you set it to "html", you should be able to work around the issue.
For ex:
bg=uibuttongroup(uifigure,'BackgroundColor',[0.8 0.9 1],'Position',[100 100 150 150]);
rb1=uiradiobutton(bg,'Text','Previous','Position',[10 100 75 20],'Interpreter','html');
rb2=uiradiobutton(bg,'Text','Next','Position',[10 50 75 20],'Interpreter','html');
  3 Kommentare
JKMSMKJ
JKMSMKJ am 20 Aug. 2025
Yes, that works!
Jeff
Jeff am 28 Aug. 2025
Excellent. Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

dpb
dpb am 31 Jul. 2025
Bearbeitet: dpb am 31 Jul. 2025
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 Kommentare
dpb
dpb am 1 Aug. 2025
Submit this to Mathworks as an official support request/bug at <Product Support Page>
JKMSMKJ
JKMSMKJ am 1 Aug. 2025
Just submitted! Thanks.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Produkte


Version

R2025a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by