Skip to content

Commit a72ec07

Browse files
authored
Merge pull request #19912 from timhoffm/figoptions-symlog
2 parents 2e00dc0 + 5332557 commit a72ec07

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/backends/qt_editor/figureoptions.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,14 @@ def figure_edit(axes, parent=None):
4141
(None, "<b>X-Axis</b>"),
4242
('Left', xmin), ('Right', xmax),
4343
('Label', axes.get_xlabel()),
44-
('Scale', [axes.get_xscale(), 'linear', 'log', 'logit']),
44+
('Scale', [axes.get_xscale(),
45+
'linear', 'log', 'symlog', 'logit']),
4546
sep,
4647
(None, "<b>Y-Axis</b>"),
4748
('Bottom', ymin), ('Top', ymax),
4849
('Label', axes.get_ylabel()),
49-
('Scale', [axes.get_yscale(), 'linear', 'log', 'logit']),
50+
('Scale', [axes.get_yscale(),
51+
'linear', 'log', 'symlog', 'logit']),
5052
sep,
5153
('(Re-)Generate automatic legend', False),
5254
]

0 commit comments

Comments
 (0)