8000
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.
1 parent 7a8e965 commit 1d43376Copy full SHA for 1d43376
proplot/axes/cartesian.py
@@ -651,7 +651,7 @@ def format(
651
is :rc:`ticklen`.
652
653
Minor tick lengths are scaled according
654
- to :rc:`ticklenratio`. Use e.g. ``ax.format(ticklen=1)`` to
+ to :rc:`tick.lenratio`. Use e.g. ``ax.format(ticklen=1)`` to
655
set for both axes.
656
fixticks : bool, optional
657
Whether to always transform the tick locators to a
@@ -924,7 +924,7 @@ def format(
924
if ticklen is not None:
925
kwticks['size'] = units(ticklen, 'pt')
926
if which == 'minor':
927
- kwticks['size'] *= rc['ticklenratio']
+ kwticks['size'] *= rc['tick.lenratio']
928
929
# Grid style and toggling
930
name = 'grid' if which == 'major' else 'gridminor'
0 commit comments