I'd like to see axes.get_label() when clicking on 'Edit curves lines and axes parameters' after plt.show() · Issue #2593 · matplotlib/matplotlib · GitHub
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I do plt.show() on some plot and then click on 'Edit curves lines and axes parameters' button, I'd like to see the label I've applied using ax.set_label('my_label'). Digging around in matplotlib\backends\backend_qt4.py. I found the following code as part of the NavigationToolbar2QT class:
when I do
plt.show()
on some plot and then click on 'Edit curves lines and axes parameters' button, I'd like to see the label I've applied usingax.set_label('my_label')
. Digging around inmatplotlib\backends\backend_qt4.py
. I found the following code as part of the NavigationToolbar2QT class:Could an extra elif be added? It would only kick it if there was no title and no ylabel:
The text was updated successfully, but these errors were encountered: