Radio Button Group not working
Show older comments
Hello,
I am unsure why my radio buttons are not showing at all, can anyone direct me as to why? Thank you.
Code:
%Button group
tipinout_choice = uibuttongroup('HandleVisibility','on',...
'Title','Plot:',...
'Position',[50,316,151,101]);
tipin = uicontrol(tipinout_choice,'Style',...
'radiobutton',...
'String','Tip-in',...
'Position',[13,51,87,23],... %[13,51,87,23]
'HandleVisibility','on');
tipout = uicontrol(tipinout_choice,'Style',...
'radiobutton',...
'String','Tip-out',...
'Position',[13,12,87,23],...
'HandleVisibility','on');
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB 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!