@@ -3043,7 +3043,7 @@ def broken_barh(self, xranges, yrange, align="bottom", **kwargs):
3043
3043
vertices .append ([(x0 , y0 ), (x0 , y1 ), (x1 , y1 ), (x1 , y0 )])
3044
3044
3045
3045
col = mcoll .PolyCollection (np .array (vertices ), ** kwargs )
3046
- self .add_collection (col , autolim = True )
3046
+ self .add_collection (col )
3047
3047
3048
3048
return col
3049
3049
@@ -5821,7 +5821,7 @@ def quiver(self, *args, **kwargs):
5821
5821
# Make sure units are handled for x and y values
5822
5822
args = self ._quiver_units (args , kwargs )
5823
5823
q = mquiver .Quiver (self , * args , ** kwargs )
5824
- self .add_collection (q , autolim = True )
5824
+ self .add_collection (q )
5825
5825
return q
5826
5826
5827
5827
# args can be some combination of X, Y, U, V, C and all should be replaced
@@ -5832,7 +5832,7 @@ def barbs(self, *args, **kwargs):
5832
5832
# Make sure units are handled for x and y values
5833
5833
args = self ._quiver_units (args , kwargs )
5834
5834
b = mquiver .Barbs (self , * args , ** kwargs )
5835
- self .add_collection (b , autolim = True )
5835
+ self .add_collection (b )
5836
5836
return b
5837
5837
5838
5838
# Uses a custom implementation of data-kwarg handling in
0 commit comments