8000 Change labels in Qt figure options. · matplotlib/matplotlib@6412460 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6412460

Browse files
committed
Change labels in Qt figure options.
... from min-max to left-right/bottom-top -- just like in ax.set_xlim, the first value can be set larger than the second to get inverted axes.
1 parent ccfe720 commit 6412460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/backends/qt_editor/figureoptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ def figure_edit(axes, parent=None):
5252
general = [('Title', axes.get_title()),
5353
sep,
5454
(None, "<b>X-Axis</b>"),
55-
('Min', xmin), ('Max', xmax),
55+
('Left', xmin), ('Right', xmax),
5656
('Label', axes.get_xlabel()),
5757
('Scale', [axes.get_xscale(), 'linear', 'log', 'logit']),
5858
sep,
5959
(None, "<b>Y-Axis</b>"),
60-
('Min', ymin), ('Max', ymax),
60+
('Bottom', ymin), ('Top', ymax),
6161
('Label', axes.get_ylabel()),
6262
('Scale', [axes.get_yscale(), 'linear', 'log', 'logit']),
6363
sep,

0 commit comments

Comments
 (0)
0