8000 Explicitly make major ticks of 5.0 units apart have 5 minor divisions · matplotlib/matplotlib@a769bef · GitHub
[go: up one dir, main page]

Skip to content

Commit a769bef

Browse files
committed
Explicitly make major ticks of 5.0 units apart have 5 minor divisions
1 parent d079d67 commit a769bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/ticker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ def __call__(self):
26262626

26272627
# The part after the 'or' is for #13069 to make minimal changes to
26282628
# behaviour
2629-
if np.isclose(majorstep_no_exponent, 2.5) or (
2629+
if np.isclose(majorstep_no_exponent, [2.5, 5.0]).any() or (
26302630
(not np.isclose(majorstep_no_exponent, [1, 10]).any() and
26312631
int(np.round(majorstep_no_exponent)) in [1, 5, 10])):
26322632
ndivs = 5

0 commit comments

Comments
 (0)
0