@@ -124,11 +124,7 @@ class ArbitraryScale(ScaleBase):
124
124
125
125
name = 'arbitrary'
126
126
127
- def __init__ (self , axis , functions , * ,
128
- major_locator = AutoLocator (),
129
- minor_locator = NullLocator (),
130
- major_formatter = ScalarFormatter (),
131
- minor_formatter = NullFormatter ()):
127
+ def __init__ (self , axis , functions ):
132
128
"""
133
129
Parameters
134
130
----------
@@ -138,22 +134,6 @@ def __init__(self, axis, functions, *,
138
134
functions: (forward, inverse)
139
135
two-tuple of the forward and inverse functions for the scale.
140
136
141
- major_locator: `~matplotlib.ticker.Locator`
142
- optional, allows passing major locator for the axis. Defaults to
143
- `~matplotlib.ticker.AutoLocator`
144
-
145
- minor_locator: `~matplotlib.ticker.Locator`
146
- optional, allows passing major locator for the axis. Defaults to
147
- `~matplotlib.ticker.NullLocator`
148
-
149
- major_formatter: `~matplotlib.ticker.Formatter`
150
- optional, allows passing major formatter for the axis. Defaults to
151
- `~matplotlib.ticker.ScalarFormatter`
152
-
153
- minor_formatter: `~matplotlib.ticker.Formatter`
154
- optional, allows passing maino formatter for the axis. Defaults to
155
- `~matplotlib.ticker.NullFormatter`
156
-
157
137
Examples
158
138
--------
159
139
0 commit comments