@@ -3043,7 +3043,7 @@ def broken_barh(self, xranges, yrange, align="bottom", **kwargs):
30433043 vertices .append ([(x0 , y0 ), (x0 , y1 ), (x1 , y1 ), (x1 , y0 )])
30443044
30453045 col = mcoll .PolyCollection (np .array (vertices ), ** kwargs )
3046- self .add_collection (col , autolim = True )
3046+ self .add_collection (col )
30473047
30483048 return col
30493049
@@ -5821,7 +5821,7 @@ def quiver(self, *args, **kwargs):
58215821 # Make sure units are handled for x and y values
58225822 args = self ._quiver_units (args , kwargs )
58235823 q = mquiver .Quiver (self , * args , ** kwargs )
5824- self .add_collection (q , autolim = True )
5824+ self .add_collection (q )
58255825 return q
58265826
58275827 # 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):
58325832 # Make sure units are handled for x and y values
58335833 args = self ._quiver_units (args , kwargs )
58345834 b = mquiver .Barbs (self , * args , ** kwargs )
5835- self .add_collection (b , autolim = True )
5835+ self .add_collection (b )
58365836 return b
58375837
58385838 # Uses a custom implementation of data-kwarg handling in
0 commit comments