@@ -1933,10 +1933,6 @@ class SpanSelector(_SelectorWidget):
1933
1933
rectprops : dict, default: None
1934
1934
Dictionary of `matplotlib.patches.Patch` properties.
1935
1935
1936
- maxdist : float, default: 10
1937
- Distance in pixels within which the interactive tool handles can be
1938
- activated.
1939
-
1940
1936
marker_props : dict
1941
1937
Properties with which the interactive handles are drawn.
1942
1938
@@ -1954,6 +1950,10 @@ class SpanSelector(_SelectorWidget):
1954
1950
button : `.MouseButton` or list of `.MouseButton`
1955
1951
The mouse buttons which activate the span selector.
1956
1952
1953
+ maxdist : float, default: 10
1954
+ Distance in pixels within which the interactive tool handles can be
1955
+ activated.
1956
+
1957
1957
drag_from_anywhere : bool, optional
1958
1958
If `True`, the widget can be moved by clicking anywhere within
1959
1959
its bounds.
@@ -1976,9 +1976,9 @@ class SpanSelector(_SelectorWidget):
1976
1976
1977
1977
@_api .rename_parameter ("3.5" , "span_stays" , "interactive" )
1978
1978
def __init__ (self , ax , onselect , direction , minspan = 0 , useblit = False ,
1979
- rectprops = None , maxdist = 10 , marker_props = None ,
1980
- onmove_callback = None , interactive = False ,
1981
- button = None , drag_from_anywhere = False ):
1979
+ rectprops = None , marker_props = None , onmove_callback = None ,
1980
+ interactive = False , button = None ,
1981
+ maxdist = 10 , drag_from_anywhere = False ):
1982
1982
1983
1983
super ().__init__ (ax , onselect , useblit = useblit , button = button )
1984
1984
0 commit comments