We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e00dc0 + 5332557 commit a72ec07Copy full SHA for a72ec07
lib/matplotlib/backends/qt_editor/figureoptions.py
@@ -41,12 +41,14 @@ def figure_edit(axes, parent=None):
41
(None, "<b>X-Axis</b>"),
42
('Left', xmin), ('Right', xmax),
43
('Label', axes.get_xlabel()),
44
- ('Scale', [axes.get_xscale(), 'linear', 'log', 'logit']),
+ ('Scale', [axes.get_xscale(),
45
+ 'linear', 'log', 'symlog', 'logit']),
46
sep,
47
(None, "<b>Y-Axis</b>"),
48
('Bottom', ymin), ('Top', ymax),
49
('Label', axes.get_ylabel()),
- ('Scale', [axes.get_yscale(), 'linear', 'log', 'logit']),
50
+ ('Scale', [axes.get_yscale(),
51
52
53
('(Re-)Generate automatic legend', False),
54
]
0 commit comments