How to link a "Checkbox" functionality with "Radiobutton" in appdesigner matlab?

2 views (last 30 days)
Hello.. i m plotting a data of two variables "a" & "b".... two radiobutton for plotting different ranges... i want that radio buttons should plot when i tick the checkbox "Plot"... at present radiobutton are working even if checkbox is active or not.
How to link a "Checkbox" functionality with "Radiobutton"
.. images and file code also attached.

Accepted Answer

Mario Malic
Mario Malic on 8 Oct 2020
I waited a bit, was hoping that you'll be able to solve it on your own, and I still do. Just reorder your commands, if you want to plot with the checkbox, why the plot commands aren't in that function callback? Your range affects the plot, so you can use it within plot command.
Hint on the Button group: Value says if the button has been pressed or not, text is the title of the button.
app.ButtonGroup.SelectedObject
ToggleButton (button1) with properties:
Value: 1
Text: 'button1'
Icon: ''
Position: [12 41 100 22]
You can use the Text property and strcmpi to detect which button is pressed.
Even though this answer is not actually a proper answer, but I'll post it as one, as motivation to do the task on your own.
  12 Comments
taimour sadiq
taimour sadiq on 16 Oct 2020
I successfully added Toggle swithc functionallity... once again thanks for ur support

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks 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!