Issue
Do text and / or number input fields exist for matplotlib
?
I have seen the widget Slider
, but that is something different. I want a simple number input field.
Solution
There currently exists no widgets that could be used to enter numbers as text. If you had a small selection of discrete numbers then you could use a RadioButton or you could use a slider as you've already suggested.
Your best would be to build a full GUI using Tkinter. This would allow you to add whatever GUI elements you need. It's also possible to embed matplotlib graphs in Tkinter, as shown in the two examples here and here.
Answered By - Ffisegydd
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.