In Python, I can create Matplotlib Radiobuttons using code like this:
rb = RadioButtons(pl.axes([0.01,0.5,0.08,0.14]),('A','B','C',))
How do I get the index of the currently active radio button outside the callback function?
In Python, I can create Matplotlib Radiobuttons using code like this:
rb = RadioButtons(pl.axes([0.01,0.5,0.08,0.14]),('A','B','C',))
How do I get the index of the currently active radio button outside the callback function?
© 2022 - 2024 — McMap. All rights reserved.
on_clicked
to register a call back – Studley